You have to go over to the main company forums for help with their plugins, but they’ve added an option you can comment out in one of the plugin files.
This is what you need to do!
Hi,
That other topic isn’t relevant anymore. We actually wanted to include this feature in the last update, but there were some issues we couldn’t find a way around.
You could try the following:
Please open includes/functions.php file present in the plugin folder, and find this part
if ( $type != ” && is_singular($allowed_post_types) && is_main_query() ) {
//if ( $type != ” && is_main_query() && in_array(get_post_type($post_id), $allowed_post_types)) {
Comment out the first line instead of the second, like this:
//if ( $type != ” && is_singular($allowed_post_types) && is_main_query() ) {
if ( $type != ” && is_main_query() && in_array(get_post_type($post_id), $allowed_post_types)) {
Then the review box should appear on homepage and post archives too.