Remove BRAND on tab
-
On a product page I have 4 tabs created
Description | Brand | Additional information | Reviews
On each they have the same wording at the beginning of the Tab as a title, which just seems like a duplicate.
I removed the Description & Additional information words by adding this code to the functions.php of the child theme
add_filter( ‘woocommerce_product_description_heading’, ‘remove_product_description_heading’ );
function remove_product_description_heading() {
return ”;
}add_filter( ‘woocommerce_product_additional_information_heading’, ‘remove_product_additional_information_heading’ );
function remove_product_additional_information_heading() {
return ”;
}
Can anybody let me know how to remove the Brand titleThanks
- The topic ‘Remove BRAND on tab’ is closed to new replies.