Someone asked how to keep the check box for forum posting checked... go to the add video template... find
PHP Code:
<table cellpadding="0" cellspacing="0" border="0" class="fieldset">
<tr><td><input type="checkbox" class="bginput" id="newthread" name="newthread" value="1" tabindex="1" /> </td><td class="smallfont"><b><phrase 1="$forum[title]">$vbphrase[create_new_thread]</phrase></b></td></tr></table>
and replace with
PHP Code:
<table cellpadding="0" cellspacing="0" border="0" class="fieldset">
<tr><td><input type="checkbox"[B]checked [/B]class="bginput" id="newthread" name="newthread" value="1" tabindex="1" /> </td><td class="smallfont"><b><phrase 1="$forum[title]">$vbphrase[create_new_thread]</phrase></b></td></tr></table>
..... all your simply doing is adding the word
checked after "checkbox"