Jump to content

site1name


Geebo

Recommended Posts

Please go to Website UI -> Language files -> default and find these lines:

header.network_name =
header.network_sites.1.name = Site1name
header.network_sites.1.link = http://google.com
header.network_sites.2.name = Site2name
header.network_sites.2.link = http://google.com

These are where you can edit name and URL, and also you can easily add more items by using number 3, 4 and etc.

Link to comment
Share on other sites

In Website UI -> Page components -> include_header_general.tpl find this block:

{{foreach item="item" from=$lang.header.network_sites}}
		<li><a href="{{$item.link}}">{{$item.name}}</a></li>
{{/foreach}}

And add target="_blank" attribute into A tag:

{{foreach item="item" from=$lang.header.network_sites}}
		<li><a href="{{$item.link}}" target="_blank">{{$item.name}}</a></li>
{{/foreach}}
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...