woocommerce_product_tabs
-
The product description seems to be part of the product tab; the tabs are misaligned – how can I fix them? I tried to simply hide the tabs but still display the product description with inserting the below into function.php but that took the tabs and the description away…how can I fix this?
add_filter( ‘woocommerce_product_tabs’, ‘woo_remove_product_tabs’, 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs[‘description’] ); // Remove the description tab
unset( $tabs[‘reviews’] ); // Remove the reviews tab
unset( $tabs[‘additional_information’] ); // Remove the additional information tabreturn $tabs;
}
The page I need help with: [log in to see the link]
The topic ‘woocommerce_product_tabs’ is closed to new replies.
