This is how i did it:
Open member.php, find:
PHP Code:
// ############################### start get info ###############################
if ($action=="getinfo") {
$templatesused = "getinfo_sendpm,aol,icq,yahoo,getinfo_birthday,getinfo_customfields,getinfo";
include("./global.php");
Add below:
PHP Code:
global $allowsignatures,$allowsmilies;
then find:
PHP Code:
if ($userinfo[yahoo]!="") {
eval("\$userinfo[yahooicon] = \"".gettemplate("yahoo")."\";");
} else {
$userinfo[yahoo]=" ";
}
Add below:
PHP Code:
if ($userinfo[signature]!="" AND $allowsignatures) {
$post[signature]=bbcodeparse($userinfo[signature],0,$allowsmilies);
eval("\$userinfo[signature] = \"".gettemplate("postbit_signature")."\";");
} else {
$userinfo[signature]="None";
}
Save & Upload Member.php
Open the template User Info Display Templates -> Getinfo
place $userinfo[signature] whereever you want the signature to be displayed
Done!