Info
- 4 posts
- 3 voices
- Started 3 years ago by johnnydoe
- Latest reply from johnnydoe
- This topic is resolved
button for guests
-
- Posted 3 years ago #
hello,
i'd like to add an extra register button to the frontpage of bbpress, i tried the following code, but i had no luck (not to mention that my php knowledge is more than just basic)
<?php if ($user->user_exists != 0) : ?> <li id="register_now"><a href="register.php" class="pagelink">Join Now</a></li> <?php endif; ?>thanks a bunch
-
- Posted 3 years ago #
And using
<?php login_form(); ?>to show login info with the register link won't do? -
- Posted 3 years ago #
You almost have it. Try it this way:
<?php if (bb_is_user_logged_in()) : ?> <li id="register_now"><a href="<?php bb_option('uri'); ?>register.php" class="pagelink">Join Now</a></li> <?php endif; ?> -
- Posted 3 years ago #
thank's a ton ck, that was the right one, with a little
<?php else : ?>modification of course :)helpful as usual.
@Ipstenu
nope a button was really necessary, but thanks anyways :)
-
You must log in to post.