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 .... ?
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 modifications, plugins and integrations → 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 .... ?
no one knows anything of infobar ?? ... hmm ... it would be nice addition for punbb
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.
Thank You very much ... this is really good .... a nice welcome for guests .... Hope it will work .... I only get 1% of visitors to register on forum and post .... this will maybe help a little
PunBB Forums → PunBB 1.2 modifications, plugins and integrations → Register pop-up
Powered by PunBB, supported by Informer Technologies, Inc.