Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter mhollinger69

    (@mhollinger69)

    I “inspected the element” and found where to hide the element – How do I save these changes and move the “Reviews” and “Color Chart” tabs over to the left?

    To remove the product description tab, you can use either:

    CSS:

    .tabbed-content ul.tabs li.description_tab {
        display: none;
    }

    –This will merely hide it from view

    PHP (functions.php):

    add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
    function woo_remove_product_tabs( $tabs ) {
        unset( $tabs['description'] );      	// Remove the description tab
        return $tabs;
    }

    — This will remove it altogether from front end

    • This reply was modified 8 years, 5 months ago by SJW.
    Thread Starter mhollinger69

    (@mhollinger69)

    Shannon – Thanks – awesome – First suggestion worked great

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove the word “Description”’ is closed to new replies.