Zachery |
01-26-2004 12:55 AM |
Quote:
Originally Posted by KuraFire
Yay, a HTL hack ^_^
|
Dan you have one too many steps in the install FYI you tell us to do the same step twice in a sorta
for the template mods you ask us to change somthing twice
PHP Code:
Find in Template newreply <!-- subject field --> <table cellpadding="0" cellspacing="0" border="0" class="fieldset"> <tr> <td class="smallfont" colspan="3">$vbphrase[title]:</td> </tr> <tr> <td><input type="text" class="bginput" name="title" value="$title" size="50" maxlength="85" tabindex="1" title="$vbphrase[optional]" /></td> <td> </td> <td><if condition="$posticons"><img id="display_posticon" src="$selectedicon[src]" alt="$selectedicon[alt]" /><else /> </if></td> </tr> </table> <!-- / subject field --> Add BELOW that: <!-- [START HACK='Now Playing Hack' AUTHOR='Dan' VERSION='1.2' CHANGEID= 1 ] --> <!-- nowplaying field --> <table cellpadding="0" cellspacing="0" border="0" class="fieldset"> <tr> <td class="smallfont" colspan="3">Now Playing:</td> </tr> <tr> <td><input type="text" class="bginput" name="nowplaying" value="$post[nowplaying]" size="50" maxlength="85" tabindex="1" title="$vbphrase[optional]" /></td> <td> </td> <td><if condition="$posticons"><img id="display_posticon" src="$selectedicon[src]" alt="$selectedicon[alt]" /><else /> </if></td> </tr> </table> <!-- / nowplaying field --> <!-- [END HACK='Now Playing Hack' AUTHOR='Dan' VERSION='1.2' CHANGEID= 1 ] --> Find in Template newreply <!-- subject field --> <table cellpadding="0" cellspacing="0" border="0" class="fieldset"> <tr> <td class="smallfont" colspan="3">$vbphrase[title]:</td> </tr> <tr> <td><input type="text" class="bginput" name="title" value="$title" size="50" maxlength="85" tabindex="1" title="$vbphrase[optional]" /></td> <td> </td> <td><if condition="$posticons"><img id="display_posticon" src="$selectedicon[src]" alt="$selectedicon[alt]" /><else /> </if></td> </tr> </table> <!-- / subject field --> REPLACE that with: <!-- [START HACK='Now Playing Hack' AUTHOR='Dan' VERSION='1.2' CHANGEID= 2 ] --> <!-- nowplaying field --> <table cellpadding="0" cellspacing="0" border="0" class="fieldset"> <tr> <td class="smallfont" colspan="3">Now Playing:</td> </tr> <tr> <td><input type="text" class="bginput" name="nowplaying" value="$post[nowplaying]" size="50" maxlength="85" tabindex="1" title="$vbphrase[optional]" /></td> <td> </td> <td><if condition="$posticons"><img id="display_posticon" src="$selectedicon[src]" alt="$selectedicon[alt]" /><else /> </if></td> </tr> </table> <!-- / nowplaying field --> <!-- [END HACK='Now Playing Hack' AUTHOR='Dan' VERSION='1.2' CHANGEID= 2 ] -->
you should fix that :)
should also be ADD UNDER not REPLACE WITH
also for the postbit templates your missing the end of an if condition
|