Zen Cart Logo
Forums / Customization from the Admin / Point to another web page

Point to another web page

Views: 1,373

Results 1 to 3 of 3
13 Jan 2014, 10:05 AM
#1
advisers_australia avatar

advisers_australia

New Zenner

Join Date:
Jan 2014
Location:
Australia
Posts:
39
Plugin Contributions:
0

Point to another web page

Hi

Is it possible for the Home button when clicked by a viewer, it returns the viewer to another web page (main page)

I have a main web page and I want my store to sit in the background.

thanks

Justin

13 Jan 2014, 1:00 PM
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Point to another web page

In a copy for your template of tpl_header.php find

<div id="navMain">
    <ul class="back">
    <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>

Change the red highlighted href to resemble this with your desired page

<div id="navMain">
    <ul class="back">
    <li><a href=your domain name></a></li>
14 Jan 2014, 4:28 AM
#3
advisers_australia avatar

advisers_australia

New Zenner

Join Date:
Jan 2014
Location:
Australia
Posts:
39
Plugin Contributions:
0

Re: Point to another web page

Hi

Thank you for your suggestion. I placed the following where you suggested:-

<li><a href="http://www.advisers-australia.com" class="drop">Main Page</a>

This created a link on the top right side next to the log in link.

This worked. Thank you for your help.

Justin