Home Forums Basel support forum Remove review tab on «Product» page

Remove review tab on «Product» page

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #13283

    Hello !
    I’m trying to remove the review section in my individual product page. I added the snippet that I found for that matter in the support forum in my «Code Snippet» plugin, but it still appears.

    Here is the snippet I used:

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

    unset($tabs[‘reviews’]);

    return $tabs;
    }

    Thanks !

    #13293

    Artem Temos
    Keymaster

    Hi,

    You need to add this code to the functions.php file in the child theme.

    Regards

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