• This is a terrific plugin. One has to make some changes to give it the look and feel of one’s own website, but there is plenty of room for that.

    After translating and pasting the following code in my functions.php this plugin gives me all I was looking for:

    add_filter( 'get_the_archive_title', 'your_prefix_review_archive_title' );
    function your_prefix_review_archive_title( $title ) {
    	if ( is_post_type_archive( 'review' ) ) {
    		return post_type_archive_title( '', false );
    	}
    
    	return $title;
    }

    The code helps to get rid of the word Archives at the archive page.

    I use the plugin for reviews (what else?). I want Dutch entrepreneurs to start publishing videos. With only 24 million people in the world who can speak Dutch there is no real market for a commercial platform on video publishing for Dutch (and Flemish) speaking entrepreneurs. But I just want to do it. One should have a hobby right?

    This plugin makes it possible I can publish reviews for this niece audience. Thank you for that Chetan Chauhan!

    For Dutch who want to see it in action (or who want the Dutch language files): https://combron.nl/reviews/

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Great review plugin for WordPress!!!’ is closed to new replies.