This topic has 2 replies, 2 voices, and was last updated 9 years, 7 months ago ago by Eva Kemp
Hi,
How can I hide the additional information tab? I put this in css but doesn’t seem to work.
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 tab
return $tabs;
}
Also, how do I update the plug ins that come with the theme?
Hello,
That code must be placed in functions.php file in the wp-content/themes/woopress directory or your child theme folder.
You can download the latest versions of plugins from this link:
https://www.8theme.com/download-plugins/
Regards,
Eva Kemp.
You must be logged in to reply to this topic.Log in/Sign up