M
Mecha
How can I remove the brand copyright at the bottom?
from template PAGE_CONTAINER
remove
Code:<xf:copyright />
that error not from templatesYes but when i make this change i get this errors in my panel:
![]()
How i can fix that???
if i push original copyright src/XF.php don't have any error
.p-footer-copyright {
display: none;
}
this needs to be added in UIX footer less option, if you are using UIX themes template. works perfect..p-footer-copyright { display: none; }
How did you do it Gspar?yes i push original copyright and use display none later i create my custom copyright and push in center of my footer
.p-footer-copyright {
display: none;
}
<div class="p-footer-row-opposite">
<div alight="center">
<a href="https://www.smartforoblackhat.ga" class="u-concealed" dir="ltr" target="_blank">Smart Foro Black Hat <span class="copyright">© 2018. Todos los derechos reservados</span></a>
</div>
why is not enough to overwrite a line in a XF.php file ?
return '<a href="https://www.mywebisteurl.com" class="u-concealed" dir="ltr" target="_blank">Forum software by XenForo™ <span class="copyright">© 2010-2018 XenForo Ltd.</span></a>';
return '<a href="https://www.mywebisteurl.com" class="u-concealed" dir="ltr" target="_blank">Forum software by XenForo™ <span class="copyright">© 2010-2018 XenForo Ltd.</span></a>';[/ICODE]
I try use tutorial from GasparLopez but i dont have code in center, same like original.
How i can fix it