I want the name of people who comment on my site to link to their url but I’m having problems achieving this.
Using the following code:
{exp:comment:form}
{if logged_out}
Name: <input type="text" name="name" value="{name}" size="50" /></p>
Email: <input type="text" name="email" value="{email}" size="50" /></p>
URL: <input type="text" name="url" value="{url}" size="50" /></p>
{/if}
<textarea name="comment" cols="70" rows="10">{comment}</textarea></p>
<input type="checkbox" name="save_info" value="yes" {save_info} /> Remember my personal information
<input type="checkbox" name="notify_me" value="yes" {notify_me} /> Notify me of follow-up comments?
<input type="submit" name="submit" value="Submit" />
{/exp:comment:form}I get the result that the commentator’s name is shown and their comment. But their name is not a url.
You can see this at work here.