Many forums have this feature to make the signatures of members live after certian minimum no. of posts. Here's a way to achieve this through minibb. Here I'm going to display only the member's website url as signature and not using the
signature addon.
The benefit to displaying only users website as signature is that normal signatures contain text that is not usually relevant to the topic and they distract search engines, diluting the key words.
Open the file bb_specials.php and add this function at the bottom, before
?>function parseMessage (){
$GLOBALS['signature']='';
if ($GLOBALS['userInfo_num_pos
ts'][$GLOBALS['poster_id']]>=15 and $GLOBALS['userInfo_user_website'][$GLOBALS['poster_id']
]!=''){
$GLOBALS['signature'] = "----------------<br><a href="".$GLOBALS['userInfo_user_website'][$GLOBALS['poster_id']]."" target="_blank" rel="nofollow">".$GLOBALS['userInfo_user_website'][$GLOBALS['poster_id ']]."</a>";
}
}
The above function displays signature (if present) after a member has made 15 posts. You can increase/decrease the no. in function according to your requirement.
Edit the templates main_posts_cell.html and add <br><br>{signature} after {$posterText}{$deleteBox}