If a non registered user posts a listing, I want to allow them to add and display a clickable URL link to their website.
Contact form for registered users :
<div class="control-group">
<label class="control-label" for="webSite"><?php _e('Website', 'sigma'); ?></label>
<div class="controls">
<?php UserForm::website_text(osc_user()); ?>
</div>
</div>
Code that displays their website on their profile :
<?php if( osc_user_website() !== '' ) { ?><li class="website"><a href="<?php echo osc_user_website(); ?>"><?php echo osc_user_website(); ?></a></li><?php } ?>
Can I change any of this code to allow non registered users?
Thanks for the help.