Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Ultimate › hide "Enable reviews" option at Advanced tab for Vendors only?
- This topic has 5 replies, 2 voices, and was last updated 5 years, 2 months ago by WCFM Forum.
- AuthorPosts
- September 17, 2019 at 3:23 am #82039MakersParticipant
Hello WC Lovers!
Is there any way to hide the “Enable reviews” option at Advanced tab for Vendors only? (Image attached) So that Admins would still have the option to enable reviews when they add their own products, but vendors will not be able to.
I’ve turned off the Store Reviews module and reviews in the menu manager, but the option is still there. I’m not sure if I’m missing this option somewhere though?
Thank you for your assistance!
Attachments:
You must be logged in to view attached files. - September 19, 2019 at 4:54 pm #82453WCFM ForumMember
Hi,
Store Reviews is not related to this.
Please add this code to your site for the purpose –
add_filter( 'wcfm_product_manage_fields_advanced', function( $advance_fields, $product_id ) { $advance_fields = wcfm_hide_field( 'enable_reviews', $advance_fields ); return $advance_fields; }, 50, 2 );
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/Thank You
- September 19, 2019 at 8:52 pm #82539MakersParticipant
Thank you for this it seems to work great for this purpose.
The only other thing I’d also like to be able to do would be… By default have enable reviews unchecked when they add a new product. Since they currently don’t see the option because we added the code above and it’s enabled/checked by default. I understand if this isn’t something you can assist me with.
I appreciate your help very much!
Thank you!
- September 21, 2019 at 9:34 pm #82825WCFM ForumMember
Well, this use this revised code –
add_filter( 'wcfm_product_manage_fields_advanced', function( $advance_fields, $product_id ) { $advance_fields = wcfm_hide_field( 'enable_reviews', $advance_fields ); if( !$product_id && isset( $advance_fields['enable_reviews'] ) ) { $advance_fields['enable_reviews']['dfvalue'] = ''; } return $advance_fields; }, 50, 2 );
Thank You
- September 21, 2019 at 10:06 pm #82837MakersParticipant
Works perfect!
Thank you very much!
- September 22, 2019 at 3:29 pm #82944WCFM ForumMember
Great 🙂
- AuthorPosts
- The topic ‘hide "Enable reviews" option at Advanced tab for Vendors only?’ is closed to new replies.