Viewing 12 reply threads
You must be logged in to reply to this topic.
Hi there,
I have some issue about the variable product:
1. How can I add a price for the product?
2. I try to add the attributes (color & size) but it’s not work. Why?
3. I try to change the ‘Out of stock’ to ‘In stock’ but it’s also not work. Why?
Please help me check it.
Thanks.
Please, did you check our videos on how to set variable products?
Also, referee to online documentation about WooCommerce, you can find a lot of information about them.
To outline, you should set quantity for each variable of that product.
Hi there,
how can I edit the ‘ADDITIONAL INFORMATION’ part?
Please let me know it.
Thanks.
Hi,
All these data are part of Woocommerce single product page. You can edit them by adding or removing attributes on product page.
Add this custom code on functions.php
add_filter( 'woocommerce_product_tabs', 'woo_remove_tabs', 98 );
function woo_rename_tabs( $tabs ) {
unset( $tabs['additional_information'] );
return $tabs;
}
Hi there,
I try to add on the code inside my functions.php but it was unsuccessful.
Can you help me check it?
Thanks.
Hello Betty,
Can you try to remove this by adding this custom CSS into Customizer > General > Custom CSS Box:
.woocommerce-additional-fields {
display: none !important;
}
Regards!
Hi there,
I added the code already but the ‘additional Information’ still there.
Please help me check it.
Thanks.
You must be logged in to reply to this topic.