I tired disabling smilies in the User Control Panel, and also disabled showing them as images versus their "emoticon" symbols, such as ;) for "wink". But the rows still appear. I'm afraid you'll have to use Scriptish and remove the following code block:
Code: Select all
<div id="smiley-box">
<strong>Smilies</strong><br />
<a href="#" onclick="insert_text(':D', true); return false;"><img src="./images/smilies/icon_e_biggrin.gif" width="15" height="17" alt=":D" title="Very Happy" /></a>
<a href="#" onclick="insert_text(':)', true); return false;"><img src="./images/smilies/icon_e_smile.gif" width="15" height="17" alt=":)" title="Smile" /></a>
<a href="#" onclick="insert_text(';)', true); return false;"><img src="./images/smilies/icon_e_wink.gif" width="15" height="17" alt=";)" title="Wink" /></a>
<a href="#" onclick="insert_text(':(', true); return false;"><img src="./images/smilies/icon_e_sad.gif" width="15" height="17" alt=":(" title="Sad" /></a>
<a href="#" onclick="insert_text(':o', true); return false;"><img src="./images/smilies/icon_e_surprised.gif" width="15" height="17" alt=":o" title="Surprised" /></a>
<a href="#" onclick="insert_text(':shock:', true); return false;"><img src="./images/smilies/icon_eek.gif" width="15" height="17" alt=":shock:" title="Shocked" /></a>
<a href="#" onclick="insert_text(':?', true); return false;"><img src="./images/smilies/icon_e_confused.gif" width="15" height="17" alt=":?" title="Confused" /></a>
<a href="#" onclick="insert_text('8-)', true); return false;"><img src="./images/smilies/icon_cool.gif" width="15" height="17" alt="8-)" title="Cool" /></a>
<a href="#" onclick="insert_text(':lol:', true); return false;"><img src="./images/smilies/icon_lol.gif" width="15" height="17" alt=":lol:" title="Laughing" /></a>
<a href="#" onclick="insert_text(':x', true); return false;"><img src="./images/smilies/icon_mad.gif" width="15" height="17" alt=":x" title="Mad" /></a>
<a href="#" onclick="insert_text(':P', true); return false;"><img src="./images/smilies/icon_razz.gif" width="15" height="17" alt=":P" title="Razz" /></a>
<a href="#" onclick="insert_text(':oops:', true); return false;"><img src="./images/smilies/icon_redface.gif" width="15" height="17" alt=":oops:" title="Embarrassed" /></a>
<a href="#" onclick="insert_text(':cry:', true); return false;"><img src="./images/smilies/icon_cry.gif" width="15" height="17" alt=":cry:" title="Crying or Very Sad" /></a>
<a href="#" onclick="insert_text(':evil:', true); return false;"><img src="./images/smilies/icon_evil.gif" width="15" height="17" alt=":evil:" title="Evil or Very Mad" /></a>
<a href="#" onclick="insert_text(':twisted:', true); return false;"><img src="./images/smilies/icon_twisted.gif" width="15" height="17" alt=":twisted:" title="Twisted Evil" /></a>
<a href="#" onclick="insert_text(':roll:', true); return false;"><img src="./images/smilies/icon_rolleyes.gif" width="15" height="17" alt=":roll:" title="Rolling Eyes" /></a>
<a href="#" onclick="insert_text(':!:', true); return false;"><img src="./images/smilies/icon_exclaim.gif" width="15" height="17" alt=":!:" title="Exclamation" /></a>
<a href="#" onclick="insert_text(':?:', true); return false;"><img src="./images/smilies/icon_question.gif" width="15" height="17" alt=":?:" title="Question" /></a>
<a href="#" onclick="insert_text(':idea:', true); return false;"><img src="./images/smilies/icon_idea.gif" width="15" height="17" alt=":idea:" title="Idea" /></a>
<a href="#" onclick="insert_text(':arrow:', true); return false;"><img src="./images/smilies/icon_arrow.gif" width="15" height="17" alt=":arrow:" title="Arrow" /></a>
<a href="#" onclick="insert_text(':|', true); return false;"><img src="./images/smilies/icon_neutral.gif" width="15" height="17" alt=":|" title="Neutral" /></a>
<a href="#" onclick="insert_text(':mrgreen:', true); return false;"><img src="./images/smilies/icon_mrgreen.gif" width="15" height="17" alt=":mrgreen:" title="Mr. Green" /></a>
<a href="#" onclick="insert_text(':geek:', true); return false;"><img src="./images/smilies/icon_e_geek.gif" width="17" height="17" alt=":geek:" title="Geek" /></a>
<a href="#" onclick="insert_text(':ugeek:', true); return false;"><img src="./images/smilies/icon_e_ugeek.gif" width="17" height="18" alt=":ugeek:" title="Uber Geek" /></a>
<hr />
Or as mentioned, just make a bookmark, keyboard shortcut, or whatever to the SHORTCUTS table, located at
Code: Select all
http://forums.informaction.com/shortcuts.php
Below the subject field is the BBCode toolbar. If you want to remove it , try this: (it opens with a comment)
Code: Select all
// Define the bbCode tags
var bbcode = new Array();
var bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','
','
','
','[img]','[/img]','
','','[flash=]', '[/flash]','[size=]','[/size]', '[faq=]', '[/faq]', '
', '');
var imageTag = false;
// Helpline messages
var help_line = {
b: 'Bold text:
text',
i: 'Italic text:
text',
u: 'Underline text:
text',
q: 'Quote text: [quote]text[/quote]',
c: 'Code display:
',
l: 'List:
',
o: 'Ordered list:
',
p: 'Insert image: [img]http://image_url[/img]',
w: 'Insert URL:
http://url or
URL text',
a: 'Inline uploaded attachment: [attachment=]filename.ext[/attachment]',
s: 'Font colour:
text Tip: you can also use color=#FF0000',
f: 'Font size:
small text',
e: 'List: Add list element',
d: 'Flash: [flash=width,height]
http://url[/flash]'
,cb_22: '[faq=flashgot|noscript]x.y[/faq]'
,cb_24: 'Strike through'
}
var panels = new Array('options-panel', 'attach-panel', 'poll-panel');
var show_panel = 'options-panel';
// ]]>[/code]
I hope this helps.