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
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
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 ...
You could add a link to another page such as the privacy page by using:PHP Code:$more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_4) . '">' . BOX_INFORMATION_PAGE_4 . '</a>';
Could you be a tad more specific on what you are trying to add?PHP Code:$more_information[] = '<a href="' . zen_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a>';
![]()
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
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.
Same thing ... just translate it a bit ...
PHP Code:$more_information[] = '<a href="' . 'http://www.your_domain_name.com' . '" target="_blank">' . 'your_text_name' . '</a>';
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!