Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter ligerdub

    (@ligerdub)

    Hi Colin,

    Thanks very much for the heads up, much appreciated. Good spot.

    I’ve disabled some plug-ins, one of which had an impact on the permalinks format. Having made those changes the links look fine now, and the formats and other various content urls appear to be in the right format.

    Thanks again,
    Eoghan

    Thread Starter ligerdub

    (@ligerdub)

    Fair play Steve……worked a treat. I was able to find the location where the images were stored. They were part of the media library installed to the page.

    The directory was stored in the following location:

    wp-content/uploads/elementor

    And then in the relevant posts.

    I just went in there and found the various URL’s, and changed them from http to https and I no longer have any mixed content errors.

    Thanks so much!

    Eoghan

    Thread Starter ligerdub

    (@ligerdub)

    Thanks Steve.

    I’ve checked CSS and no issues there. Plugins don’t seem to be a factor either re: cache.

    I’ve also tried placing the following code in the wp-config file without success:

    define(‘WP_CONTENT_URL’, ‘https://elyinsights.com/wp-content’);

    Is it possible that the Theme I’m using (Ocean WP) could be a factor?

    Thread Starter ligerdub

    (@ligerdub)

    Update: Marked as resolved.

    Thread Starter ligerdub

    (@ligerdub)

    Hi Colin,

    Many thanks for the response, very helpful.

    I’ve had a look at this, installed the plugin and changed the .htaccess file to include the following codes. The site is now no longer blocked on their server, so this seems to have worked. I really appreciate your solution. The console suggests there is mixed content, which I will go through one by one, but the main problem has been resolved thanks to your help, so I’m back in business.:

    “# BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

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

    I’ve put the following at the end of the wp-config file:

    /** Http Headers – Setup by E Lyons. */
    define(‘FORCE_SSL_ADMIN’, true);

Viewing 5 replies - 1 through 5 (of 5 total)