I just find out that the CONTACT US link in the Information Box has no SSL support.
How do I add SSL support to that link?
Thank you.
I just find out that the CONTACT US link in the Information Box has no SSL support.
How do I add SSL support to that link?
Thank you.
You are absoluty right to be concerned.
includes>modules>sideboxes>information.php
I also put a folder with my template name in the sideboxes.
Find this code
and replace with this codeCode:if (DEFINE_CONTACT_US_STATUS <= 1) { $information[] = '<a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a>';
Code:if (DEFINE_CONTACT_US_STATUS <= 1) { $information[] = '<a href="' . zen_href_link(FILENAME_CONTACT_US, '', 'SSL') . '">' . BOX_INFORMATION_CONTACT . '</a>';
Your welcome, anyone else having links elsewhere, header or footer, etc. this is the proper way to link the contact us page
<a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'SSL') ?>">Contact Us</a>
or
<a href="' . zen_href_link(FILENAME_CONTACT_US, '', 'SSL') . '">' . BOX_INFORMATION_CONTACT . '</a>
and again in the
includes>modules>sideboxes>information.php
if (DEFINE_CONTACT_US_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_CONTACT_US, '', 'SSL') . '">' . BOX_INFORMATION_CONTACT . '</a>';