Hi,
When viewing the site with https, I’m not getting the style sheet for the reviews section of the listing details. The console shows this error:
Mixed Content: The page at ‘https://xxx.yyy.com/places/united-states/washington/seattle/westlake-center/#reviews’ was loaded over HTTPS, but requested an insecure stylesheet ‘http://bapp.wpengine.com/wp-content/plugins/geodir_review_rating_manager/css/style.css?ver=4.5.3’. This request has been blocked; the content must be served over HTTPS.
Looking at the geodir review manager code, it is using WP_PLUGIN_URL, which reportedly doesn’t work when using ssl/https urls. (see https://wordpress.org/ideas/topic/wp_plugin_url-doesnt-take-ssl-into-account)
For a temporary fix, I’ve patched the geodir code to use the plugin_dir_url function rather than WP_PLUGIN_URL as follows:
define( ‘GEODIR_REVIEWRATING_PLUGINDIR_URL’, plugin_dir_url( __FILE__ ) );
But, would like to see this fixed and released.
Thanks,
Lynne