Add Code Tag In Quick Reply

Daz

New Member
What does this hack do? : This will give you a code tag (#) in your quick reply box!



In showthread_quickreply

Find

PHP:
<td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>


Add Under it


PHP:
<!--- Code Tag --->
<if condition="$show['code_bbcode']">
                <td><div class="imagebutton" id="{$editorid}_cmd_wrap0_code"><img src="$stylevar[imgdir_editor]/code.gif" width="21" height="20" alt="$vbphrase[wrap_code_tags]" /></div></td>
            </if> 
<!--- Code Tag --->
 
Top