inherit
55468
0
Dec 26, 2018 14:57:57 GMT -8
GlowyDaBstrd
53
August 2005
tajime
|
Post by GlowyDaBstrd on Apr 10, 2013 18:51:02 GMT -8
I tried the old code but it didn't work. I also tried to look from settings and everywhere if there was already that "Disable smilies" section but couldn't find it. How can I disable smilies in proboards v5 ?
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,017
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Apr 11, 2013 7:11:44 GMT -8
If you're referring to removing the smiley button in the controls tray The UBBC With Quick Reply plugin from the v5 database will allow you to add/remove from full reply in addition to quick reply
|
|
inherit
55468
0
Dec 26, 2018 14:57:57 GMT -8
GlowyDaBstrd
53
August 2005
tajime
|
Post by GlowyDaBstrd on Apr 11, 2013 16:54:16 GMT -8
I want the smileys all the way off from my forum. So that it's impossible to use them. UBBC With Quick Reply plugin only removes the button, but it doensn't disable smileys from being used. That's what I'm looking for.
In v4 I use this code:
<script type="text/javascript"> <!-- // Disable standard PB smilies..
if(document.postForm) { document.postForm.nosmiles.checked = 'y'; document.postForm.nosmiles.parentNode.parentNode.style.display = 'none';
var td = document.getElementsByTagName('td'); for(t=0; t<td.length; t++) { if(td[t].width == '30%' && td[t].innerHTML.match(/Add Smilies:/)) { td[t].parentNode.style.display = 'none'; }}}
if(location.href.match(/tion=display/)) { var subButton = document.getElementsByTagName('input'); for(s=0; s<subButton.length; s++) { if(subButton[s].value == 'Post Reply') { subButton = subButton[s]; break; }}
var tBox = document.getElementsByTagName('textarea'); for(t=0; t<tBox.length; t++) { if(tBox[t].name == 'message') { tBox = tBox[t]; break; }}
subButton.onclick = function(){tBox.value += '#no'+'smileys';} } // --> </script>
But it doesn't seem to work in v5.
|
|
inherit
55468
0
Dec 26, 2018 14:57:57 GMT -8
GlowyDaBstrd
53
August 2005
tajime
|
Post by GlowyDaBstrd on Apr 16, 2013 21:13:28 GMT -8
Anyone? I'm getting desperate here!
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,017
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Apr 17, 2013 2:07:02 GMT -8
You'll most likely need to wait until after launch since the equivalent setting of what that code uses still exists in V5 with users able to disable smileys when selecting which smiley to use (basically what you want is to be dictator and remove it for them). The problem is it is tied in with the WYSIWYG which as you may notice is getting pounded with updates this close to launch. Anything written to deal with the WYSIWYG is likely to break so we wait until the pounding stops.
|
|
inherit
55468
0
Dec 26, 2018 14:57:57 GMT -8
GlowyDaBstrd
53
August 2005
tajime
|
Post by GlowyDaBstrd on Sept 13, 2013 7:49:48 GMT -8
Has this made any progress? Still in need of destroying all the smiley images.
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,017
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Sept 13, 2013 19:36:29 GMT -8
|
|