Viewing 2 replies - 1 through 2 (of 2 total)
  • https://docs.woothemes.com/document/editing-product-data-tabs/

    add_filter( ‘woocommerce_product_tabs’, ‘woo_rename_tabs’, 98 );
    function woo_rename_tabs( $tabs ) {

    $tabs[‘description’][‘title’] = __( ‘New Description’ ); // Rename the description tab

    return $tabs;

    }

    to change the heading of description text use

    add_filter(‘woocommerce_product_description_heading’,
    ‘isa_product_description_heading’);

    function isa_product_description_heading() {
    return __(‘YOUR CUSTOM TITLE’, ‘woocommerce’);
    }

    Thread Starter KAZZTRD

    (@kazztrd)

    Thank you that worked fine!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change Product Description tab name.’ is closed to new replies.