Thread: Pop new window
View Single Post
  #2  
Old 05-07-2014, 03:47 AM
  tony_sologubov's Avatar 
tony_sologubov tony_sologubov is offline
 

X-Cart team
  
Join Date: Jan 2009
Posts: 2,431
 

Default Re: Pop new window

Hi!

If you want to make all footer links open in a new tab, you can apply the following simple change:

1) Enabled Custom Skin module
2) Create the skins/custom_skin/default/en/footer_menu.tpl file with the following content:

Code:
<ul id="secondary-menu" class="clearfix"> {foreach:getItems(),i,item} <li {displayItemClass(i):h}><a href="{item.url}" target="_blank" {if:item.active}class="active"{end:}>{item.label}</a></li> {end:} </ul>

3) Reload the page and check the results.

If you need to make only particular link open in a new window, please let me know. It will require a bit more complicated mod, but I will explain you what to do.

Tony,
Reply With Quote