• Resolved bevlin

    (@bevlin)


    We have everything working correctly but would like to either change the DESCRIPTION of the ADDITIONAL INFORMATION tab that is automatically created for variable products or disable it and add our own custom tab.

    Please could you advise where/how we could do this?

    Many thanks
    Bev

Viewing 1 replies (of 1 total)
  • Plugin Contributor yikesitskevin

    (@yikesitskevin)

    Hi Bev,

    Our plugin has no control over the additional information tab so you’ll need to use a filter function. Try this:

    // Remove Additional Information tab
    add_filter( 'woocommerce_product_tabs', 'yikes_remove_additional_information_tab', 20, 1 );
    
    function yikes_remove_additional_information_tab( $tabs ) {
    
    	// Remove the Additional Info tab
    	if ( isset( $tabs['additional_information'] ) ) {
    		unset( $tabs['additional_information'] );
    	} 
    	return $tabs;
    }

    Are you familiar with filter functions? Do you need help adding this to your website?

    Let me know.

    Thank you,
    Kevin.

Viewing 1 replies (of 1 total)

The topic ‘Variable Product Tab ADDITIONAL INFORMATION’ is closed to new replies.