Site logo

Archived topic

Woocommerce Description Tab Missing

2 replies · Started by Luke on March 2, 2021

Viewing posts 1–3 of 3

I have just pushed a site live built using generatepress. On the staging site, on a single product page we have custom tabs created that all display when the description tab is showing. This is working on the staging site. The live site is ecom, so we couldnt push the changes but instead had to manualy recreate on production server. I cant think of anything thats different between staging and production site, but they are not showing.

Staging site example:
https://staging-valentte.kinsta.cloud/organic/cracked-heel-treatment/

Production site running same theme code:
https://valentte.com/organic/cracked-heel-treatment/

I have the following code in the functions file:

add_filter( 'woocommerce_product_tabs', 'bbloomer_remove_product_tabs', 9999 );
function bbloomer_remove_product_tabs( $tabs ) {
unset( $tabs['additional_information'] );
unset( $tabs['reviews'] );
return $tabs;
}

Can you give me any pointers for how to resolve please ?

Sorry, problem solved. A woocommerce page template that we had previously deleted from the staging site got pushed to the live site. All sorted

Glad to hear you found the issue!

This archived topic is closed to new replies.