Review Form Not Displaying Under HTTPS
-
version 3.0.8
In WordPress Settings, have set the URL to HTTPS – we’re using an SSL for the site.
There’s also an htaccess directive which will redirect all http URLs to their corresponding https URLs. It is as follows:
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] </IfModule>
You’ll see in the image there’s no stars displaying either: https://postimg.org/image/l0471l8w7/
If I remove the above code, and refresh the page, the review submission form displays properly, but if the code is there, it won’t display properly.
Also, in FireFox, if the above is in htaccess, I can optin in to display the “insecure” page which then displays the review form properly. What’s making the page insecure?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Review Form Not Displaying Under HTTPS’ is closed to new replies.