Hi guys,
I’m trying to make a quick link that opens in a new tab / window. Just one, the other should open normally.
If anyone can explain how to do this that would be awesome.
Or if it’s easier, a top menu link would also work.
Thanks! - Floris & Ingrid
You wil have to add the link manually in the ‘top_quick_links.tpl’ template like this:
```php
{hook name=“index:top_links”}
{foreach from=$quick_links item="link"}
{$link.descr}
{/foreach}
[COLOR=Red]Link text[/COLOR]
{/hook} ```An example at:
[URL]http://www.cscartdemo.martfox.com/index.php[/URL]
Anyway I would recommend to use a hook. An example how to do that is here:
[url]http://kb2.cs-cart.com/replace-poweredby[/url]
Thanks Indy!