Hello @zelda!
In order to avoid misunderstandings, please provide more information(screenshots/video) about what exactly you need to achieve or what is the issue there and your website link.
A solution for sending a screenshot/video is this:
Download, capture, and send: https://www.techsmith.com/jing-tool.html
After making the screenshot, you will have a link; paste it here.
Thank you!
Hello @Bettina!
There is no issue. And I think my question does not need screenshots or video.
I just want to know if there is a smart way, via theme panel or your theme API… to totally disable all review features (in back and front) : the tdc-review cpt, the tdc-review-criteria taxonomy, the tdc-review-email cpt.
Thanks.
Hello @zelda!
We don’t have any settings to turn on/off. We have some shortcodes in the TagDiv Composer that can be removed, or you can manually remove the reviews from your posts.
Documentation here: https://forum.tagdiv.com/user-reviews/ -> https://forum.tagdiv.com/reviews-2/
Thank you!
Why can’t you turn the Reviews feature into a plugin. Not every news or publishing website needs reviews. In fact very few need it.
Hello @bettina !
Thanks for your reply. I’m agree with @rahulroushan We need a way to turn off globally this Reviews feature.
Thanks @anamaria for adding this to your request features.
This can be easily done using the following code snippet
function delete_tagdiv_reviews_post_types(){
unregister_post_type( 'tdc-review-email' );
unregister_post_type( 'tdc-review' );
unregister_taxonomy_for_object_type( 'tdc-review-criteria', 'tdc-review' );
}
add_action('init','delete_tagdiv_reviews_post_types', 100);
Hello,
In the latest version, you can disable review here https://i.imgur.com/AqtnCse.png
Thank you!