• 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?

    https://www.ads-software.com/plugins/wp-customer-reviews/

Viewing 1 replies (of 1 total)
  • Thread Starter Dave Lauretti

    (@345ad)

    I figured out the issue: in my attempts to increase site speed/loading time, in functions.php I’ve removed loading of the plugin’s CSS file in my code; and with the Add Your Own Headers plugin, added the reference to the CSS file only on the review page. What made it work is by using a relative path to the CSS file rather than the absolute.

    All elements of the plugin load, and the site is secure/no warnings.

    The directives in the .htaccess file had nothing to do with the issue either.

Viewing 1 replies (of 1 total)
  • The topic ‘Review Form Not Displaying Under HTTPS’ is closed to new replies.