• Hi there,
    I am looking for the file in which one can edit the products’ tab title and content.
    For instance : I would like to change the words “Product description” bye something more relevant.

    Does anyone have the solution ? ??

    Regards,

    Julien

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

    (@purpleberryservices)

    Add below code snippet in your child theme’s function.php file

    add_filter( ‘woocommerce_product_tabs’, ‘pbs_rename_woo_product_tabs’, 98 );
    function pbs_rename_woo_product_tabs( $tabs ) {
    $tabs[‘description’][‘title’] = ‘Product Description New Title’;
    return $tabs;
    }

    Thread Starter Julien777

    (@julien777)

    Thanks Mina.
    I’am gonna do it and let you know how it goes ??

    Julien

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change the product page tabs title/content’ is closed to new replies.