XF 1.4 How to embedd an Imprint?

+DS_DV+

Active member
Hi,
how can i embedd a link to a hidden page node to the footer?
next o the help link

with best +DS_DV+
 
Admin CP -> Appearance -> Templates -> footer

Rich (BB code):
			<ul class="footerLinks">
			<xen:hook name="footer_links">
				<li><a href="{xen:link 'pages', {xen:array 'node_name=blah'}}">LINK TEXT</a></li>
				<xen:if is="{$xenOptions.contactUrl.type} === 'default'">
					<li><a href="{xen:link 'misc/contact'}" class="OverlayTrigger" data-overlayOptions="{&quot;fixed&quot;:false}">{xen:phrase contact_us}</a></li>
				<xen:elseif is="{$xenOptions.contactUrl.type} === 'custom'" />
					<li><a href="{$xenOptions.contactUrl.custom}" {xen:if {$xenOptions.contactUrl.overlay}, 'class="OverlayTrigger" data-overlayOptions="{&quot;fixed&quot;:false}"'}>{xen:phrase contact_us}</a></li>
				</xen:if>
				<li><a href="{xen:link help}">{xen:phrase help}</a></li>
				<xen:if is="{$homeLink}"><li><a href="{$homeLink}" class="homeLink">{xen:phrase home}</a></li></xen:if>
				<li><a href="{$requestPaths.requestUri}#navigation" class="topLink">{xen:phrase go_to_top}</a></li>
				<li><a href="{xen:link forums/-/index.rss}" rel="alternate" class="globalFeed" target="_blank"
					title="{xen:phrase rss_feed_for_x, 'title={$xenOptions.boardTitle}'}">{xen:phrase rss}</a></li>
			</xen:hook>
			</ul>

Screen shot 2014-11-08 at 5.08.48 PM.webp
 
Top Bottom