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.
How can I make my form visible to guests with a message that they need to register to use it?
Thanks!
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!