Forum Replies Created
-
AuthorPosts
-
Thank you its working,
this one do you know how to change the select options – see details ?
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
Thank you very much!
hello do you know how i can edit the product column default ? the default is 4
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
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
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
but it’s only per product, what i want to achieve is this
charge shipping for the most expensive shipping class
im using advanced shipping,
there’s no edit highest product here
what i don’t is the shipping is added per product ..
i only want to add the shipping to the highest product only
-
AuthorPosts