Remove Reviews from Product Page

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Viewing 1 reply thread
  • Author
    Posts
    • #126375
      Jasmin Kronewetter
      Participant

      I have turned off the Review Module in admin Store Settings but there is still a ‘Reviews’ tab on my product listing page.

      Does anyone know how I can remove this? It seems that turning off the Review Module only turned off Store Reviews but Product Reviews remain.

      Many thanks.

    • #126394

      Hello,

      Product review tab is the WooCommerce default feature, t’s not depends with our WCFM -plugin settings.
      To remove review tab from product page, add below code in your theme’s functions.php

      add_filter( 'woocommerce_product_tabs', 'wcs_woo_remove_reviews_tab', 98 );
          function wcs_woo_remove_reviews_tab($tabs) {
          unset($tabs['reviews']);
          return $tabs;
      }

      Thanks.

Viewing 1 reply thread
  • You must be logged in to reply to this topic.