• Resolved charchar

    (@charlenechin91)


    Hey guys! is there a way to override the default tags in woocommerce and use this Custom Product Tabs for WooCommerce instead?

    Default looks like this

    Can’t seem to find the “override button” either – mine looks like this

    • This topic was modified 6 years, 3 months ago by charchar.
    • This topic was modified 6 years, 3 months ago by charchar.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter charchar

    (@charlenechin91)

    Sorry i mean “default tabs “

    Plugin Contributor yikesitskevin

    (@yikesitskevin)

    Hi @charlenechin91,

    Our plugin doesn’t integrate with the default WooCommerce tabs but you have a few options.

    If you’re trying to not use the Description tab, I would recommend leaving it empty. It will not appear if it’s empty.

    You can turn off the Reviews tab on a product by disabling reviews (This is found in the Reviews Advanced section of the product edit screen).

    You can’t turn off the Additional Information tab as this is automatically created when your product has “weight, dimensions or attributes.”

    However, using some custom code, you can disable all of these tabs. Here is an example of custom code that will remove all three default WooCommerce tabs.

    // Remove Tabs
    add_filter( 'woocommerce_product_tabs', 'yikes_woo_remove_tabs', 20, 1 );
    
    function yikes_woo_remove_tabs( $tabs ) {
    
        // Remove the description tab
        if ( isset( $tabs['description'] ) ) {
        	unset( $tabs['description'] );
        } 
    
        // Remove the additional information tab
        if ( isset( $tabs['additional_information'] ) ) {
        	unset( $tabs['additional_information'] );
        }
    
        // Remove the reviews tab
        if ( isset( $tabs['reviews'] ) ) {
        	unset( $tabs['reviews'] );
        } 
    
        return $tabs;
    }

    Cheers,
    Kevin.

    • This reply was modified 6 years, 3 months ago by yikesitskevin.
    Thread Starter charchar

    (@charlenechin91)

    Thanks so much for your help Kevin , Appreciate it much!

    • This reply was modified 6 years, 2 months ago by charchar.
    • This reply was modified 6 years, 2 months ago by charchar.
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Override default tabs’ is closed to new replies.