Thanks for your kind words. We are glad you like it! :-)
It depends on how your users are synchronized with miniBB database, i.e. how to follow them in the code. I hope it is done by user_id field, right?
Then, you may use parseMessage() function of bb_plugins.php to generate a custom URL instead of the present {$pLink1} and {$pLink2} tags available by default in
templates/main_posts_cell.html template. For example:
function parseMessage(){
/* Custom profile links */
if($GLOBALS['cols'][0]!=0){
$GLOBALS['pLink1']="<a href=\"http://here_come_your_URL_where_you_may_use/?user_id_which_is={$GLOBALS['cc']}\" title=\"{$GLOBALS['l_about']} "{$GLOBALS['posterName']}"\">";
$GLOBALS['pLink2']='</a>';
}
else {
$GLOBALS['pLink1']='';
$GLOBALS['pLink2']='';
}
/* --Custom profile links */
}
The code in bold works like a condition for guests. I.e. if you have forums for registered users only, you may minimize the code and make it a *bit* smaller ;-)
Let me know if it will work for you...
kuopassaI think we need a
clockwise solution, because miniBB profiles are disabled, as the author states ;-)