How can I have the "Append signature to post" check box in a post form default to unchecked? I can do it for e-mail notification in my profile settings but can't seem to find it for the signature.
Sep 25, 2002, 10:23 AM
User (120 posts)
Sep 25, 2002, 10:23 AM
Post #2 of 3
Views: 1537
Edit the template include_post_common_write.html and include_post_html_common_write.html
where you see this code:
<input name="post_append_signature" type="checkbox" tabindex=7 value="1"<%if post_append_signature%> checked<%endif%>>
delete this: "<%if post_append_signature%> checked<%endif%>
Then the final code should be this:
<input name="post_append_signature" type="checkbox" tabindex=7 value="1">
Hope this help
http://www.webconferencia.net/
where you see this code:
<input name="post_append_signature" type="checkbox" tabindex=7 value="1"<%if post_append_signature%> checked<%endif%>>
delete this: "<%if post_append_signature%> checked<%endif%>
Then the final code should be this:
<input name="post_append_signature" type="checkbox" tabindex=7 value="1">
Hope this help

http://www.webconferencia.net/