Navigation Button

Support for Template related issues
Post Reply
mike24williams
Posts: 57
Joined: Mon May 23, 2011 10:34 pm

Navigation Button

Post by mike24williams » Thu Jun 16, 2011 1:06 am

hello all,

My client wants to add a navigation button to the header. Next to the Home button. He wants to link back to his site.
The shopping cart is an addition to his site and there is no clear way of navigating back other than the browser navigation.

Is this possible with out causing too much pain.

Best Regards


Mike

User avatar
leo
admin
Posts: 4320
Joined: Sun Dec 13, 2009 8:27 am
Location: Hungary

Re: Navigation Button

Post by leo » Thu Jun 16, 2011 1:45 am

Yes, it is possible. We will write a short FAQ soon.

User avatar
leo
admin
Posts: 4320
Joined: Sun Dec 13, 2009 8:27 am
Location: Hungary

Re: Navigation Button

Post by leo » Thu Jun 16, 2011 6:30 am

The easiest way is:

1. open /catalog/language/english/extension/navigation.php and add e.g.

Code: Select all

$_['text_myhomepage'] = 'My Home Page';
below

Code: Select all

$_['text_checkout'] = 'Checkout';
2. open /catalog/template/default/module/navigation.tpl and add

Code: Select all

<a href="http://www.mysite.com"><?php echo $text_myhomepage; ?></a>
below

Code: Select all

<a href="<?php echo $checkout; ?>"><?php echo $text_checkout; ?></a>
3. open /catalog/extension/module/navigation.php and add

Code: Select all

$view->set('text_myhomepage', $language->get('text_myhomepage'));
below

Code: Select all

$view->set('text_checkout', $language->get('text_checkout'));
4. change the width of #bar in the default css files or what else is needed.

mike24williams
Posts: 57
Joined: Mon May 23, 2011 10:34 pm

Re: Navigation Button

Post by mike24williams » Sun Jun 19, 2011 10:22 pm

Hi Leo,

I will give it a go today.

Thanks for your reply

Mike

mike24williams
Posts: 57
Joined: Mon May 23, 2011 10:34 pm

Re: Navigation Button

Post by mike24williams » Mon Jun 20, 2011 10:54 pm

Thanks Leo,

That worked like a dream.

Regards

Mike

danialpaul1
Posts: 1
Joined: Sat Nov 19, 2011 7:43 am

Re: Navigation Button

Post by danialpaul1 » Tue Nov 22, 2011 3:53 pm

I live for my dream, I wish to become super internet marketer !

Post Reply