Remove copyright XenForo 2.2

Remove copyright XenForo 2.2

First way:

1. Go to Admin Panel
2. Appearance -> Templates -> extra.less
3. Put there this code

CSS:
.p-footer-copyright {
    display: none;
}
4. Press Save
5. Done :)

Second way:

1. Go to your Appearance->Styles->YourTheme and search PAGE_CONTAINER
2. Search line 654 or find this code :

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

3. Remove and place this code :

Code:
<div class="p-footer-copyright">
Your Own Copyright
</div>

4. and then click save and exit
 
Back
Top