Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Help with More Information Box

Help with More Information Box

Locked

Views: 895

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
28 May 2007, 2:43 PM
#1
mgbyte avatar

mgbyte

New Zenner

Join Date:
Nov 2005
Posts:
45
Plugin Contributions:
0

Help with More Information Box

How do i change the url in one of the links inside the More information side box? I have tried to find help here but havnt been able to. Can some one please help.

Thanks

28 May 2007, 2:50 PM
#2
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Help with More Information Box

Based on a vague question ... the best I can tell you is to copy the more information sidebox to your templates and overrides directory and find the link that is in there that you wish to change and reset the URL for where it is going and the TEXT for the link ...

Example, while this link has a switch or IF statement on it ...

    $more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_4) . '">' . BOX_INFORMATION_PAGE_4 . '</a>';

You could add a link to another page such as the privacy page by using:

    $more_information[] = '<a href="' . zen_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a>';

Could you be a tad more specific on what you are trying to add? :smile:

30 May 2007, 12:01 AM
#3
mgbyte avatar

mgbyte

New Zenner

Join Date:
Nov 2005
Posts:
45
Plugin Contributions:
0

Re: Help with More Information Box

Im sorry nd thank you. I am trying to add an extrnal url to on of the links in the more infoarmation box. I have re-named onee and would like it to point to another website not to page 2 or 3 . Bassically make the contact us link point to another wensite.

30 May 2007, 12:11 AM
#4
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Help with More Information Box

Same thing ... just translate it a bit ... :smile:

    $more_information[] = '<a href="' . 'http://www.your_domain_name.com' . '" target="_blank">' . 'your_text_name' . '</a>';