Removing Woo Commerece Additional Information Tab Breaks Shop Page

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.

Hi @sydneyjbg,

I hope you are well today and thank you for your question.

I could confirm the issue on my test site.

You can this issue by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS


#content .product section.up-sells.upsells.products {
    clear: both;
}

Best Regards,
Movin