I set only authenticated users can signup. However, for anonymous user instead of seeing nothing about signup, show them "Log in to signup". How can I do this?

Comments

josi123’s picture

I would like to do that too!

mattyoung’s picture

I solved that with a custom template:

<?php if (user_is_logged_in()): ?>
  <?php print $signup_status ?>
<?php else: ?>
  <a href="/user/login">Log in</a> to signup
<?php endif ?>