WooCommerce Multivendor Marketplace – Home › Forums › WCfM – Feature Request › Reviews tab keeps appearing on vendor's store page
This topic contains 5 replies, has 2 voices, and was last updated by WCfM Forum 1 week, 2 days ago.
- AuthorPosts
LinaHello,
I am facing an issue with the “Reviews” tab inside the vendor’s store page.
I want to disable the “Reviews tab” and I go to WCfM Admin Setting -> Modules -> Review -> Set this OFF (according to your site).
Although, the tab just stays there, in contrary to the “Policies” tab which was disappeared by the same steps.
I would be glad to know what I am doing wrong!
Thank you in advance.HI,
Please check this, it works following exact setting – https://www.useloom.com/share/b6552ec933f74d7aa3ae9feea7026cbd
Is there any caching in your site? If so, then please clear those and take a look.
Well, are you using latest version of plugins?
Thank You
LinaHello once again,
Yes I have taken these extact steps but the tab keeps appearing.
There is no caching plugins in the site and everything is up-to-date (WooCommerce Frontend Manager 5.3.2).
Is my only solution to hide it with CSS code?
Thank you 🙂Hi,
Do not use CSS, better add this code to your child theme’s functions.php –
add_filter( 'wcfmmp_store_tabs', function( $store_tabs, $store_id ) { if( isset( $store_tabs['reviews'] ) ) unset( $store_tabs['reviews'] ); return $store_tabs; }, 50, 2 );
Thank You
LinaPerfect! It worked just fine!
Although, the relevant path …/reviews it’s still accessible.
How can I make it inaccessible for my visitors?
Thank you once again.Hi,
Don’t worry about that.
You know about “/reviews” but your users will not have any idea about this!
Thank you
- AuthorPosts