Silivistras Member Oct 18, 2015 #1 Could it be possible for members, when they choose "New Posts", every new post to open at a new tab?
B borbole Well-known member Oct 18, 2015 #2 Silivistras said: Could it be possible for members, when they choose "New Posts", every new post to open at a new tab? Click to expand... Hi. Do you mean the new posts at he navbar? If so, at the navigation template find this code: HTML: <li><a href="{xen:link 'find-new/posts'}" rel="nofollow">{xen:if $visitor.user_id, {xen:phrase new_posts}, {xen:phrase recent_posts}}</a></li> Change it to this: HTML: <li><a href="{xen:link 'find-new/posts'}" rel="nofollow" target="_blank">{xen:if $visitor.user_id, {xen:phrase new_posts}, {xen:phrase recent_posts}}</a></li> And then save the changes. Upvote 0 Downvote
Silivistras said: Could it be possible for members, when they choose "New Posts", every new post to open at a new tab? Click to expand... Hi. Do you mean the new posts at he navbar? If so, at the navigation template find this code: HTML: <li><a href="{xen:link 'find-new/posts'}" rel="nofollow">{xen:if $visitor.user_id, {xen:phrase new_posts}, {xen:phrase recent_posts}}</a></li> Change it to this: HTML: <li><a href="{xen:link 'find-new/posts'}" rel="nofollow" target="_blank">{xen:if $visitor.user_id, {xen:phrase new_posts}, {xen:phrase recent_posts}}</a></li> And then save the changes.