SimplePortal

Customization => Blocks and Modifications => Mod Requests => Topic started by: siliconsara on November 28, 2013, 11:15:14 AM

Title: Disable Smileys In Shoutbox
Post by: siliconsara on November 28, 2013, 11:15:14 AM
Someone already brought this up, but their question was overlooked in favor of avatars in the shoutbox.  (http://simpleportal.net/index.php?topic=12427.0)

I would like to do the same: remove the smiley ability in the shoutbox.  I have smileys disabled on my forum so I would like to reflect that in the shoutbox as well.

Thank you,
Sara

PS, I've tried doing this myself but I keep getting the same fatal error:

Quote
Template Parse Error!
There was a problem loading the /Themes/default/PortalShoutbox.template.php template or language file. Please check the syntax and try again - remember, single quotes (') often have to be escaped with a slash (\). To see more specific error information from PHP, try accessing the file directly.

You may want to try to refresh this page or use the default theme.

Parse error: syntax error, unexpected end of file in .../Themes/default/PortalShoutbox.template.php on line 232

Code: [Select]
223: }
224: else
225: echo '
226: <updated>0</updated>';
227:
228: echo '
229: </smf>';
230: }
231:

232: ?>

233:
234:

PPS: For some reason I can't update my profile to reflect my new SMF and SP versions.  Here they are:

SMF: 2.0.6
SP: 2.3.5
Title: Re: Disable Smileys In Shoutbox
Post by: mo on January 06, 2014, 08:09:55 PM
Commenting out the bits that call it up worked for me...

in /smf/Themes/default/PortalShoutbox.template.php

find:
Code: [Select]
echo ' <a href="#smiley" onclick="sp_collapse_object(\'sb_smiley_', $shoutbox['id'], '\', false); return false;">', sp_embed_image('smiley'), '</a> <a href="#style" onclick="sp_collapse_object(\'sb_style_', $shoutbox['id'], '\', false); return false;">', sp_embed_image('style'), '</a>';
replace with:
Code: [Select]
//echo ' <a href="#smiley" onclick="sp_collapse_object(\'sb_smiley_', $shoutbox['id'], '\', false); return false;">', sp_embed_image('smiley'), '</a> <a href="#style" onclick="sp_collapse_object(\'sb_style_', $shoutbox['id'], '\', false); return false;">', sp_embed_image('style'), '</a>';
find:
Code: [Select]
echo '
<div id="sp_object_sb_smiley_', $shoutbox['id'], '" style="display: none;">';

foreach ($shoutbox['smileys']['normal'] as $smiley)
echo '
<a href="javascript:void(0);" onclick="replaceText(\' ', $smiley['code'], '\', document.getElementById(\'new_shout_', $shoutbox['id'], '\')); return false;"><img src="', $settings['smileys_url'], '/', $smiley['filename'], '" alt="', $smiley['description'], '" title="', $smiley['description'], '" /></a>';

if (!empty($shoutbox['smileys']['popup']))
echo '
<a onclick="sp_showMoreSmileys(\'', $shoutbox['id'], '\', \'', $txt['more_smileys_title'], '\', \'', $txt['more_smileys_pick'], '\', \'', $txt['more_smileys_close_window'], '\', \'', $settings['theme_url'], '\', \'', $settings['smileys_url'], '\'); return false;" href="javascript:void(0);">[', $txt['more_smileys'], ']</a>';

echo '
</div>
<div id="sp_object_sb_style_', $shoutbox['id'], '" style="display: none;">';

foreach ($shoutbox['bbc'] as $image => $tag)
{
if (!in_array($tag['code'], $shoutbox['allowed_bbc']))
continue;

if (!isset($tag['after']))
echo '<a href="javascript:void(0);" onclick="replaceText(\'', $tag['before'], '\', document.getElementById(\'new_shout_', $shoutbox['id'], '\')); return false;">';
else
echo '<a href="javascript:void(0);" onclick="surroundText(\'', $tag['before'], '\', \'', $tag['after'], '\', document.getElementById(\'new_shout_', $shoutbox['id'], '\')); return false;">';

echo '<img onmouseover="style_highlight(this, true);" onmouseout="if (window.style_highlight) style_highlight(this, false);" src="', $settings['images_url'], '/bbc/', $image, '.gif" align="bottom" width="23" height="22" alt="', $tag['description'], '" title="', $tag['description'], '" style="background-image: url(', $settings['images_url'], '/bbc/bbc_bg.gif); margin: 1px 2px 1px 1px;" /></a>';
}

replace with:
Code: [Select]
/* echo '
<div id="sp_object_sb_smiley_', $shoutbox['id'], '" style="display: none;">';

foreach ($shoutbox['smileys']['normal'] as $smiley)
echo '
<a href="javascript:void(0);" onclick="replaceText(\' ', $smiley['code'], '\', document.getElementById(\'new_shout_', $shoutbox['id'], '\')); return false;"><img src="', $settings['smileys_url'], '/', $smiley['filename'], '" alt="', $smiley['description'], '" title="', $smiley['description'], '" /></a>';

if (!empty($shoutbox['smileys']['popup']))
echo '
<a onclick="sp_showMoreSmileys(\'', $shoutbox['id'], '\', \'', $txt['more_smileys_title'], '\', \'', $txt['more_smileys_pick'], '\', \'', $txt['more_smileys_close_window'], '\', \'', $settings['theme_url'], '\', \'', $settings['smileys_url'], '\'); return false;" href="javascript:void(0);">[', $txt['more_smileys'], ']</a>';

echo '
</div>
<div id="sp_object_sb_style_', $shoutbox['id'], '" style="display: none;">';

foreach ($shoutbox['bbc'] as $image => $tag)
{
if (!in_array($tag['code'], $shoutbox['allowed_bbc']))
continue;

if (!isset($tag['after']))
echo '<a href="javascript:void(0);" onclick="replaceText(\'', $tag['before'], '\', document.getElementById(\'new_shout_', $shoutbox['id'], '\')); return false;">';
else
echo '<a href="javascript:void(0);" onclick="surroundText(\'', $tag['before'], '\', \'', $tag['after'], '\', document.getElementById(\'new_shout_', $shoutbox['id'], '\')); return false;">';

echo '<img onmouseover="style_highlight(this, true);" onmouseout="if (window.style_highlight) style_highlight(this, false);" src="', $settings['images_url'], '/bbc/', $image, '.gif" align="bottom" width="23" height="22" alt="', $tag['description'], '" title="', $tag['description'], '" style="background-image: url(', $settings['images_url'], '/bbc/bbc_bg.gif); margin: 1px 2px 1px 1px;" /></a>';
} */


edit: Incidentally this gets rid of the styling button also, so I guess I got a little comment block happy, but if you don't want them to use smiley's why would you want them to style their letters!  :D
Title: Re: Disable Smileys In Shoutbox
Post by: [SiNaN] on January 07, 2014, 05:53:40 AM
Well, if it's working for you, it's all okay. If you need further assistance, feel free to ask.
SimplePortal 2.3.8 © 2008-2024, SimplePortal