1

Topic: Register pop-up

You know how some vbulletin forums have some kind of pop-up on top that says ...you are not registered yet ... register etc..... Can something like this be done for punbb .... ?

2

Re: Register pop-up

no one knows anything of infobar ?? ... hmm ... it would be nice addition for punbb

Re: Register pop-up

You can use Extra Boxes if you like.

Alternatively, use the code I'm using for this purpose:

<?php
// Original code from Extra Boxes by Mediator
// Show guest info box if not logged in
if($pun_user['is_guest'] AND $pun_config['o_announcement'] == '0') { // Changed to only show info if no announcement exists ?>
<div id="punginfo" class="block">
    <h2><span>Welcome guest!</span></h2>
    <div class="box">
        <div class="inbox">
            <div>[clever welcome message for guests]</div>
        </div>
    </div>
</div>
<?php } ?>

Save the above code in include/user/ as guest.php, then add the following:

<pun_include "guest.php">

below

<pun_announcement>

in main.tpl.

Looking for a certain modification for your forum? Please take a look here before posting.

4

Re: Register pop-up

Thank You very much ... this is really good .... a nice welcome for guests wink .... Hope it will work .... I only get 1% of visitors to register on forum and post .... this will maybe help a little