19-Jan-2015, 10:46 PM
You'll need to change the cmtx_current_page() function as well (directly below it). I don't know exactly why but the code which checks if your URL is using https doesn't seem to work on your site.
In the cmtx_current_page() function replace this line:
In the cmtx_current_page() function replace this line:
PHP Code:
<?php
'http' . ((!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') ? 's' : '') . '://'
With this:
PHP Code:
<?php
'https://'