XF 2.1 Where can I edit template for custom HTML for the footer?

chillman

Member
I want to insert some custom HTML in the Footer. In the area before or after the "Forum software by XenForo® © 2010-2019 XenForo Ltd." area (See the screenshot). So where I have to edit the templates?

insert-html-footer.webp
 
PAGE_CONTAINER template, find (around line 582):

Code:
        <xf:if contentcheck="true">
            <div class="p-footer-copyright">
            <xf:contentcheck>
                <xf:copyright />
                {{ phrase('extra_copyright') }}
            </xf:contentcheck>
            </div>
        </xf:if>

You can add your HTML above and below the code.

Though an add-on should be utilised for this, as I am against editing templates.
 
Or you can simply do this by editing the phrase "extra_footer_copyright" found Appearance > Search phrases > Title contains > extra_footer_copyright and edit. IIRC, you can use HTML.
 
Top Bottom