Navigation Button
-
mike24williams
- Posts: 57
- Joined: Mon May 23, 2011 10:34 pm
Navigation Button
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
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
Re: Navigation Button
Yes, it is possible. We will write a short FAQ soon.
Re: Navigation Button
The easiest way is:
1. open /catalog/language/english/extension/navigation.php and add e.g.
below
2. open /catalog/template/default/module/navigation.tpl and add
below
3. open /catalog/extension/module/navigation.php and add
below
4. change the width of #bar in the default css files or what else is needed.
1. open /catalog/language/english/extension/navigation.php and add e.g.
Code: Select all
$_['text_myhomepage'] = 'My Home Page';
Code: Select all
$_['text_checkout'] = 'Checkout';
Code: Select all
<a href="http://www.mysite.com"><?php echo $text_myhomepage; ?></a>
Code: Select all
<a href="<?php echo $checkout; ?>"><?php echo $text_checkout; ?></a>
Code: Select all
$view->set('text_myhomepage', $language->get('text_myhomepage'));
Code: Select all
$view->set('text_checkout', $language->get('text_checkout'));
-
mike24williams
- Posts: 57
- Joined: Mon May 23, 2011 10:34 pm
Re: Navigation Button
Hi Leo,
I will give it a go today.
Thanks for your reply
Mike
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
Thanks Leo,
That worked like a dream.
Regards
Mike
That worked like a dream.
Regards
Mike
-
danialpaul1
- Posts: 1
- Joined: Sat Nov 19, 2011 7:43 am
Re: Navigation Button
I live for my dream, I wish to become super internet marketer !