Forum Replies Created

Viewing 10 posts - 101 through 110 (of 230 total)
  • Author
    Posts
  • in reply to: Remove + sign on product categories #27109

    Thank you its working,

     

    this one do you know how to change the select options – see details ?

     

    in reply to: PRODUCT PAGE ERROR #27050

    hi Chelseathisisme paste it on your claue theme function.php

     

    add_filter(
    ‘woocommerce_cart_item_name’,
    function($name, $cart_item, $cart_item_key) {
    $product = apply_filters(
    ‘woocommerce_cart_item_product’,
    $cart_item[‘data’],
    $cart_item,
    $cart_item_key
    );
    if (method_exists($product, ‘get_name’)) {
    // WooCommerce 3.x
    $is_link = substr($name, 0, 3) === ‘<a ‘;
    $name = $product->get_name();
    if ($is_link) {
    $name = sprintf(
    %s‘,
    esc_url($product->get_permalink($cart_item)),
    $name
    );
    }
    }
    return $name;
    },
    50, 3
    );

     

    and

     

    do this on the variation of the product

     

    then do this on the product that has size or colors

     

    and then you can see the variation on the cart or checkout page

     

    in reply to: Get Highest Product on shipping #27046

    Thank you very much!

    in reply to: Get Highest Product on shipping #27035

    hello do you know how i can edit the product column default ? the default is 4

    in reply to: Get Highest Product on shipping #27011

    Hello harry,

     

    do you know how to display the size on shopping cart or checkout page ?

     

    that’s my shopping cart and product page

     

    the size is not showing on cart .. and even on orders

     

    thanks

     

    Rumi

    in reply to: Get Highest Product on shipping #27012

    Hello harry,

     

    do you know how to display the size on shopping cart or checkout page ?

     

    that’s my shopping cart and product page

    the size is not showing on cart .. and even on orders

     

    thanks

     

    Rumi

    in reply to: Get Highest Product on shipping #26971

    how about the this

     

    “Incorrect user ID specified.”

     

    for instagram

     

    this is our client ID : 2065084240

    this is our access tokern : 2065084240.1677ed0.ad89b91b10b0464886ce8460a4ca88e0

     

    Thank you Harry

     

    in reply to: Get Highest Product on shipping #26938

    but it’s only per product, what i want to achieve is this

     

    charge shipping for the most expensive shipping class

     

    in reply to: Get Highest Product on shipping #26925

    im using advanced shipping,

     

    there’s no edit highest product here

    in reply to: Get Highest Product on shipping #26890

    what i don’t is the shipping is added per product ..

    i only want to add the shipping to the highest product only

Viewing 10 posts - 101 through 110 (of 230 total)