• Hello,

    I was trying to rename the Reviews tab on my WooCommerce installation but it doesn’t work if I have WooDiscuz plugin activated.

    The code that I’m trying to use in my functions.php file is:
    add_filter( ‘woocommerce_product_tabs’, ‘woo_rename_tabs’, 98 );
    function woo_rename_tabs( $tabs ) {
    $tabs[‘reviews’][‘title’] = __( ‘Ratings’ );
    return $tabs;
    }

    Please note that the code above works when I disable WooDiscuz plugin. I can also rename every other tab except the Reviews tab.

    Any ideas what is going on and how to fix it?

    Regards,
    Igor

  • The topic ‘Can’t rename WooCommerce Reviews tab’ is closed to new replies.