Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
Post
by doktornotor » 02 Dec 2011, 07:52
Putting it here before I lose the code again...
Open: viewtopic.php
Find:
Add after:
Find:
Code: Select all
$user_cache[$poster_id]['sig'] = bbcode_nl2br($user_cache[$poster_id]['sig']);
$user_cache[$poster_id]['sig'] = smiley_text($user_cache[$poster_id]['sig']);
$user_cache[$poster_id]['sig_parsed'] = true;
}
Add after:
Code: Select all
$signat[$poster_id]++;
if($signat[$poster_id] >= 2)
{
$user_cache[$poster_id]['sig'] = '';
}
Post
by Terr0r » 02 Dec 2011, 13:02
What does this editing have you a screenshot before you editing and afther you editing
Post
by doktornotor » 02 Dec 2011, 13:31
Shockingly, it does exactly what the subject says - show users' signature once per page in topic view.
Post
by analyst_underscore » 25 Jul 2012, 01:49
Can this be made so that the last post the user has on the page gets the sig rather than the first?