Thank you for the quick reply Rod.
This works, but only if the https is entered manually in the URL bar. What I was looking is for an automatic transition to https when the Contact Us link in the side box was clicked, like it happens when the Login link is clicked.
I think I found the solution but would like somebody to confirm that my change is not bulls**t: I changed the two lines in the /includes/modules/sideboxes/my_template/information.php from
PHP Code:
if (DEFINE_CONTACTUS_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_CONTACTUS) . '"><img src="images/design/howtocontactus.png" alt="" /> ' . BOX_INFORMATION_CONTACTUS . '</a>';
to
PHP Code:
if (DEFINE_CONTACTUS_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_CONTACTUS, '', 'SSL') . '"><img src="images/design/howtocontactus.png" alt="" /> ' . BOX_INFORMATION_CONTACTUS . '</a>';
Is that valid or should I despair? I know nothing of php but found something similar in the tpl_header.php that gave me the idea. If the above change is correct, does it mean that I can extend it to other pages, although I can't think of any at the moment.