Bluesplayer:
Why can't I edit my initial post without a warning showing?
On this forum, you could edit your message only within 5 minutes since its posting. It's a limitation for this forum only, gained from practice. On your forum, the miniBB software allows to set up any rules you want.
Closer to your issue: you have to put the code into a variable and then build this variable in
bb_plugins.php like in a following way:
if($user_id==0) $loggedPayPalBtn='';
else {
$loggedPayPalBtn=<<<out
//here goes the code for your PayPal button or any other
out;
}
then in some template you prefer, like
templates/main_topics.html for example, put this:
{$loggedPayPalBtn}This could be used for any kind of codes, separating them from guests/members.
However I'm not sure how do you insert the button in your posts (is it straight HTML in a template, or is it kind of dynamic code inserted in database), so this above could have a correction, if you provide more infos or if it doesn't work.