How to remove 'add to wishlist' button and category on product page?
-
Hello,
1) How do I remove the ‘add to wishlist’ button and category on the product page?
2) How do I change the position/order of the custom tab on the product page?
Thanks.
Hello,
1. Please provide a product page URL.
2. The default Woocommerce does not provide the option to do that. You will have to find a plugin or customize Woocommerce template.
Best Regards
For example on this product page:
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
body .product-design-alt .entry-summary .yith-wcwl-add-to-wishlist {
display:none;
}
body .single-product-content .product_meta> .posted_in {
display:none;
}
body .product-design-alt .product_meta {
background-color: #ffffff;
}
Best Regards