I have used the following code successfully before `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;
}` but when I use it with Sparkling (child theme is in place), then the Related products section moves all the way up under the Categories and Tags, actually next to the product image. That has never happened before with any other theme, so I am not sure how to make the Related Products section stay at the bottom of the page and clear the product image. The site is not live yet, so I am not sure how to show what is happening, but hopefully, you can understand from what I’m saying. It seems I need some blank space to take the place of the tabs I am removing.
Thanks in advance for any help.