I just setup a basic blog on a site and used the templates in the default EE install as a starting point.
The blog again is simple, just has the post, “read more…” using a truncate plugin and the comments.
But when you go to the blog, my personal email address is in the email input box. I did do some testing of posting comments during setup, but reviewing my code, i have the following:
{exp:comment:form}
<label>Name:</label>
<input type="text" name="name" value="{name}" size="50" />
<label>Email:</label>
<input type="text" name="email" value="{email}" size="50" />
<label>Location:</label>
<input type="text" name="location" value="{location}" size="50" />
<label>URL:</label>
<input type="text" name="url" value="{url}" size="50" />
<label>Comment:</label>
<textarea name="comment" cols="50" rows="12">{comment}</textarea>
<input type="submit" name="submit" value="Submit" class="submit" />
{/exp:comment:form}This again is the code from the default EE install blog.
The users do not log in at all. I removed the comment preview (for now) as well.
The client has also said that my email is there as well.
I did testing of the default blog by making dummy comments, being logged in/out, etc. and my email isn’t in the email input box.
So I am confused on whats going on.
I did change value=”{email}” to value=”” and it removed the email, but again its not like that on the default setup.
So am I missing some EE tags or over looking something?
Thanks