• Resolved lazar96

    (@lazar96)


    None of my pops up are working, not sure why but it seems to be since I set up HTTPS.

    Anyone had an issue like this?

    Thanks in advance

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @lazar96 , I hope you are doing well today!

    I can’t replicate the same on my installation with SSL. Do you see any errors

    Would you please try to force SSL from the .htacces file, if the SSL is not forced already, add the code bellow to the .htaccess file:

    RewriteEngine On
    RewriteCond %{SERVER_PORT} 80
    RewriteRule ^(.*)$ https://yourdomain.com/$1 [R=301,L]

    If your site is in a subfolder, use this code:

    RewriteEngine On
    RewriteCond %{SERVER_PORT} 80
    RewriteCond %{REQUEST_URI} folder
    RewriteRule ^(.*)$ https://yourdomain.com/folder/$1 [R=301,L]

    If you are already forcing SSL on your site, please let me know how you’re forcing it; with a plugin or through the wp-config.php file?

    Also please check the PopUp item settings, id you are using “On A Specific URL” condition and the URL point to HTTP, it will not work.

    Let us know how it went!

    Cheers,
    Nastia

    Thread Starter lazar96

    (@lazar96)

    Found the solution it was actually me being stupid. I had to redirect my urls to www. after setting up Cloudflare. The pop up URLS were all just on domain.co.uk not https://www.domain.co.uk

    Thanks anyway

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Not working after setting up with SSL’ is closed to new replies.