• Resolved allphasemedia

    (@allphasemedia)


    Awesome plugin! Worked like a charm.

    Now id like to remove the additional information. I used CSS prior to hide the tab, but now there are no tabs. Any more tricks up your sleeve?

    Mike

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter allphasemedia

    (@allphasemedia)

    For anyone who finds this, i found a solution.

    Install Custom Functions plugin (so that core files remain unhacked) and add this php snippet:

    /* Enter your custom functions here */ // Remove the additional information tab
    function woo_remove_product_tabs( $tabs ) {
        unset( $tabs['additional_information'] );
        return $tabs;
    }
    add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
    Plugin Author SilkyPress

    (@diana_burduja)

    For other operations on the tabs, such as removing, renaming, re-ordering, customizing, or adding a new tab, you can check out here the WooCommerce documentation.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove “Additional Information”?’ is closed to new replies.