Jump to content

[SOLVED] how to add a link in header ?


Recommended Posts

open file:

/modules/blockpermanentlinks/blockpermanentlinks-header.tpl

 

there is a code:
 

<ul id="header_links">
	<li id="header_link_contact"><a href="{$link->getPageLink('contact', true)|escape:'html'}" title="{l s='contact' mod='blockpermanentlinks'}">{l s='contact' mod='blockpermanentlinks'}</a></li>
	<li id="header_link_sitemap"><a href="{$link->getPageLink('sitemap')|escape:'html'}" title="{l s='sitemap' mod='blockpermanentlinks'}">{l s='sitemap' mod='blockpermanentlinks'}</a></li>
	<li id="header_link_bookmark">
		<script type="text/javascript">writeBookmarkLink('{$come_from}', '{$meta_title|addslashes|addslashes}', '{l s='bookmark' mod='blockpermanentlinks' js=1}');</script>
	</li>
</ul>

to add own link, just add it as a new li object:

<li id="header_link_sitemap"><a href="http://example.com" >{l s='example' mod='blockpermanentlinks'}</a></li>
Link to comment
Share on other sites

 

open file:

/modules/blockpermanentlinks/blockpermanentlinks-header.tpl

 

there is a code:

 

<ul id="header_links">
	<li id="header_link_contact"><a href="{$link->getPageLink('contact', true)|escape:'html'}" title="{l s='contact' mod='blockpermanentlinks'}">{l s='contact' mod='blockpermanentlinks'}</a></li>
	<li id="header_link_sitemap"><a href="{$link->getPageLink('sitemap')|escape:'html'}" title="{l s='sitemap' mod='blockpermanentlinks'}">{l s='sitemap' mod='blockpermanentlinks'}</a></li>
	<li id="header_link_bookmark">
		<script type="text/javascript">writeBookmarkLink('{$come_from}', '{$meta_title|addslashes|addslashes}', '{l s='bookmark' mod='blockpermanentlinks' js=1}');</script>
	</li>
</ul>

to add own link, just add it as a new li object:

<li id="header_link_sitemap"><a href="http://example.com" >{l s='example' mod='blockpermanentlinks'}</a></li>

 

Got It  Thank You Vekia.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...