Jump to content

How to Add an external link in footer Information block?


limon213

Recommended Posts

Go in FTP to path: themes/THEME_NAME/modules/blockcms/blockcms.tpl
 

Find
 

{if isset($show_sitemap) && $show_sitemap}
			<li>
				<a href="{$link->getPageLink('sitemap')|escape:'html':'UTF-8'}" title="{l s='Sitemap' mod='blockcms'}">
					{l s='Sitemap' mod='blockcms'}
				</a>
			</li>
			{/if}

right after it, add:

			<li>
				<a href="YOUR_LINK" title="YOUR_TITLE">
					{l s='YOUR_TITLE' mod='blockcms'}
				</a>
			</li>

Replace "YOUR_LINK" and "YOUR_TITLE" with, obviously, your link and your title :D

 

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...