Your comments

Sorry, there is no plugin setting controlling which pages. If you are using the do_action code, you can just add a conditional page check. For example...

if (!is_page(92)){

do_action( 'wprev_pro_plugin_action', 5 );

}

That will show it on all pages but ID 92. You can use multiple pages with is_page. Here is more about it...

https://developer.wordpress.org/reference/functions/is_page/

Normally you would only add the Shortcode for the review template to the pages you want to show the reviews on. How are you adding the reviews to all the pages?

That place ID looks okay. You can check what the Google API is returning to the plugin with the following link. Replace the Place_ID with your business Place_ID and the YOUR_API_KEY with your Google API.

https://maps.googleapis.com/maps/api/place/details/json?placeid=YOUR_PLACE_ID&key=YOUR_API_KEY

That usually means that you are using the wrong place id. What place id are you using?