Forums

Form for users but visible to guest?

yaksushi 23 Nov, 2010
I'd like to have a form that is visiable to guests but has a message that they need to register first to use it.

I'm able to hide the form from guests by using this code.
<?php
$user =& JFactory::getUser();
if (!$user->guest):
?>

<?
else:
?>
<h2>This form is only available to registered members! Please logon before attempting to access this form. If you do not have an account on YakAngler.com <A HREF="index.php?option=com_alpharegistration&view=register">register now!</A></h2>
<?
endif;
?>


How can I make my form visible to guests with a message that they need to register to use it?

Thanks!
GreyHead 23 Nov, 2010
Hi yaksushi ,

Not sure I understand. You want the guests to see the form and message but not be able to submit it?

You could hide the submit button from the guests?

Bob
yaksushi 25 Nov, 2010
Good idea that's exactly what i did!
This topic is locked and no more replies can be posted.