Reputation: 39
can any one help me to change the footer and header of the phpbb forum..
Upvotes: 1
Views: 9208
Reputation: 3165
Well you can also just add the following lines to your styles/<theme>/template/ajax.js
file:
var copy = $('.copyright').html();
var link = copy.split("<br>").pop();
$('.copyright').html(link);
Or to remove everything from the footer (incl. the acp link). One liner solution in you javascript file again:
$('.copyright').css('display','none');
Regards, Melroy
Upvotes: 0
Reputation: 1176
For PHPBB version 3.0.x the header is now at "/styles/[stylename]/template/overall_header.html" and the footer is at "/styles/[stylename]/template/overall_footer.html".
Pete
Upvotes: 6
Reputation: 2498
You need to find /templates/name-of-style-you-use/overall_header.tpl and /templates/name-of-style-you-use/overall_footer.tpl accordingly. You can edit them easily.
Upvotes: 2