Results 1 to 4 of 4
  1. #1
    Join Date
    Jan 2012
    Posts
    14
    Plugin Contributions
    0

    Default Contact Us link in the Information Box has no SSL

    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.

  2. #2
    Join Date
    Sep 2006
    Posts
    542
    Plugin Contributions
    0

    Default Re: Contact Us link in the Information Box has no SSL

    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
    Code:
    if (DEFINE_CONTACT_US_STATUS <= 1) {
        $information[] = '<a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a>';
    and replace with this code
    Code:
    if (DEFINE_CONTACT_US_STATUS <= 1) {
        $information[] = '<a href="' . zen_href_link(FILENAME_CONTACT_US, '', 'SSL') . '">' . BOX_INFORMATION_CONTACT . '</a>';

  3. #3
    Join Date
    Jan 2012
    Posts
    14
    Plugin Contributions
    0

    Default Re: Contact Us link in the Information Box has no SSL

    Quote Originally Posted by usernamenone View Post
    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
    Code:
    if (DEFINE_CONTACT_US_STATUS <= 1) {
        $information[] = '<a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a>';
    and replace with this code
    Code:
    if (DEFINE_CONTACT_US_STATUS <= 1) {
        $information[] = '<a href="' . zen_href_link(FILENAME_CONTACT_US, '', 'SSL') . '">' . BOX_INFORMATION_CONTACT . '</a>';
    thanks. done and with SSL support already.

  4. #4
    Join Date
    Sep 2006
    Posts
    542
    Plugin Contributions
    0

    Default Re: Contact Us link in the Information Box has no SSL

    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>';

 

 

Similar Threads

  1. Link information from out of stock product to the contact us page
    By WWRepair in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 12 Sep 2012, 05:10 PM
  2. The Page 2 link will not display in the Information Box
    By alexb123 in forum General Questions
    Replies: 3
    Last Post: 3 Sep 2009, 04:48 AM
  3. Has Anybody Changed the contact Us url link to point to another page?
    By randyh5000 in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 1 Jul 2008, 05:26 AM
  4. Adding a Login Link to the Information Box
    By Rabbcon in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 1 Feb 2007, 07:59 PM
  5. How to edit the 'Contact Us' page in the 'Information' box...
    By RebelRapunzel in forum General Questions
    Replies: 2
    Last Post: 14 Sep 2006, 01:39 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg