Hello,
I want to be able that a logged in member can choose which name he want to comment as.
In other words even though I am logged in to the site I want to be able to comment as whoever I want to be.
{exp:comment:form}
<div id="form">
{if member_group == 1}
<input type="text" name="name" value="Choose name" />
{/if}
<textarea name="comment" rows="8" cols="40">{comment}</textarea>
<input type="submit" id="submit_comment" name="submit" value="Submit" />
</div>
{/exp:comment:form}I tried this, but it still comments as the logged in user.
Anyone?