Quote:
Originally Posted by wjbrewer
With help from tech support here is the solution.
Edit the "https.php" file located in your x-cart root directory. Near the top find this line:
Code:
$https_scripts = array();
Then add any pages you want to be loaded as https to the list. For the contact us page it would be changed to
Code:
$https_scripts = array("help.php?section=contactus");
Now the Contact Us page is loaded under https. This is just a small detail, but I guess every little bit of customer confidence helps.
Bill
|
Thank you very much Bill, it works wonderfully.