Ram
Ram

Reputation: 39

how to change the header and footer of PHPBB forum?

can any one help me to change the footer and header of the phpbb forum..

Upvotes: 1

Views: 9208

Answers (3)

Melroy van den Berg
Melroy van den Berg

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

DigiOz Multimedia
DigiOz Multimedia

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

Jacek Francuz
Jacek Francuz

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

Related Questions