Disable reviews

Posted in: Newspaper
Post count: 10

Hi tagDiv,

Is there a way to disable all the reviews feature in admin ?

Thanks.

Post count: 21065

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!

Post count: 10

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.

Post count: 21065

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!

Post count: 34

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.

Post count: 27744

Hello,

I will add this request on our list.

Thank you!

Post count: 10

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.

Post count: 144

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);

Post count: 27744

Hello,

In the latest version, you can disable review here https://i.imgur.com/AqtnCse.png

Thank you!

Viewing 9 posts - 1 through 9 (of 9 total)
The forum ‘Newspaper’ is closed to new topics and replies.