XF 2.2 Link in Footer

Go to template PAGE_CONTAINER. Search for...

Code:
    <xf:if is="$xf.visitor.canChangeLanguage()">
                            <li><a href="{{ link('misc/language') }}" data-xf-click="overlay"
                                data-xf-init="tooltip" title="{{ phrase('language_chooser')|for_attr }}" rel="nofollow">
                                <xf:fa icon="fa-globe" /> {$xf.language.title}</a></li>
                        </xf:if>

...and paste this code directly below:

Code:
<xf:if is="$xf.tosUrl">
<li><a target="_blank" href="https://www.yourdomain.de">Text Here</a></li>
</xf:if>

Best regards
 
Top Bottom