Former Member
inherit
guest@proboards.com
242523
0
Nov 24, 2024 19:50:54 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Sept 22, 2019 18:23:25 GMT -8
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Sept 23, 2019 12:06:42 GMT -8
Did you type the code in or use the plugin to insert the code? Not that it should make any difference. I did finally manage to replicate the effect, but it meant I had to click the 'Create Post' button, but not allow the post to go through.. Clicking it a second time then scrambled the smiley code and I got the effect, but that shouldn't happen during normal use. Are you having to hit the post button more than once to post?? The only thing I can think of doing is removing the alt altogether and removing the quote/edit function. If you are happy with losing the alt text then I can do tht for you, otherwise I'm stumped.
|
|
Former Member
inherit
guest@proboards.com
242523
0
Nov 24, 2024 19:50:54 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Sept 24, 2019 2:10:00 GMT -8
Did you type the code in or use the plugin to insert the code? Not that it should make any difference. I did finally manage to replicate the effect, but it meant I had to click the 'Create Post' button, but not allow the post to go through.. Clicking it a second time then scrambled the smiley code and I got the effect, but that shouldn't happen during normal use. Are you having to hit the post button more than once to post?? The only thing I can think of doing is removing the alt altogether and removing the quote/edit function. If you are happy with losing the alt text then I can do tht for you, otherwise I'm stumped. I almost always type it manually, and I don't recall ever having to hit the post button more than once. I don't care about the alt text. Let's lose it.
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Sept 24, 2019 13:23:41 GMT -8
Did you type the code in or use the plugin to insert the code? Not that it should make any difference. I did finally manage to replicate the effect, but it meant I had to click the 'Create Post' button, but not allow the post to go through.. Clicking it a second time then scrambled the smiley code and I got the effect, but that shouldn't happen during normal use. Are you having to hit the post button more than once to post?? The only thing I can think of doing is removing the alt altogether and removing the quote/edit function. If you are happy with losing the alt text then I can do tht for you, otherwise I'm stumped. I almost always type it manually, and I don't recall ever having to hit the post button more than once. I don't care about the alt text. Let's lose it. Okidokes... Please try this version.... (3.2.92). I have stripped out the alt text and have disabled the function to return the smilies back to their codes when quoting. Hopefully that should fix your issue by not allowing the scenarios in which it can occur.
|
|
Former Member
inherit
guest@proboards.com
242523
0
Nov 24, 2024 19:50:54 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Sept 24, 2019 15:20:26 GMT -8
I almost always type it manually, and I don't recall ever having to hit the post button more than once. I don't care about the alt text. Let's lose it. Okidokes... Please try this version.... (3.2.92). I have stripped out the alt text and have disabled the function to return the smilies back to their codes when quoting. Hopefully that should fix your issue by not allowing the scenarios in which it can occur. Installed with fingers crossed. Thanks, Todge. You rock!
|
|
inherit
198412
0
May 26, 2022 8:09:32 GMT -8
Timebomb007
450
August 2013
timebomb007
|
Post by Timebomb007 on Dec 13, 2019 20:05:03 GMT -8
Todge : I tried using /* Hide the Shoutbox */ .shoutbox {display:none;} and changing the shoutbox layout line to <div class="$[shoutbox_class] container full" style="display:none;"> but the shoutbox is not hiding. I am trying to still use the smilies in Quick Reply with the shoutbox hidden, since I see you can't just disable the shoutbox. Forum UR: pondfriends.boards.netThanks.
|
|
inherit
252032
0
Apr 26, 2024 23:51:41 GMT -8
Retread
Tribbial Pursuit.
5,017
January 2018
retread
|
Post by Retread on Dec 13, 2019 21:39:35 GMT -8
Todge : I tried using /* Hide the Shoutbox */ .shoutbox {display:none;} and changing the shoutbox layout line to <div class="$[shoutbox_class] container full" style="display:none;"> but the shoutbox is not hiding. I am trying to still use the smilies in Quick Reply with the shoutbox hidden, since I see you can't just disable the shoutbox. Forum UR: pondfriends.boards.netThanks. Hi Timebomb007 Todge mentioned being away until the end of January but perhaps I can talk you through this before then. The Style Sheet addition /* Hide the Shoutbox */ .shoutbox {display:none;} seems to be on the very last line of the Style Sheet for your default theme on your forum and viewing it as a guest, I don't see the shoutbox. But that's theme-specific. If other themes are available on your forum, you would need to add that line to all of them. OR You could wrap that in style tags and put it in your Global Footer. That way it would affect any theme that was being used to view the forum. <style> /* Hide the Shoutbox */ .shoutbox {display:none;} </style>
|
|
inherit
140147
0
Nov 19, 2024 5:07:22 GMT -8
Nscalerr
Throw me to the wolves and I'll return leading the pack!
3,043
May 2009
nscalerr
|
Post by Nscalerr on May 18, 2020 5:30:14 GMT -8
After inserting a smiley, then going back to edit the post in bbcode, an indent was added on the first line of text.
I added the following to the Global Header, (as I have multiple themes), but it would also work being added at the botom of the stylesheet. Turns out, this doesn't fix the problem!
<style> /* Fix for indent in bbcode editor. */ .form_post_edit .bbcode-editor textarea { margin-left: -7px; } </style>
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on May 18, 2020 7:04:31 GMT -8
After inserting a smiley, then going back to edit the post in bbcode, an indent was added on the first line of text. I added the following to the Global Header, (as I have multiple themes), but it would also work being added at the botom of the stylesheet. <style> /* Fix for indent in bbcode editor. */ .form_post_edit .bbcode-editor textarea { margin-left: -7px; } </style> Thank you Nscalerr, I have tried over and over to get rid of that annoying addition to the UBBC editor. Unfortunately, the fix you suggest will effect the entire textarea, so if you have multiple lines then you will hide the first character of every line..
|
|
inherit
140147
0
Nov 19, 2024 5:07:22 GMT -8
Nscalerr
Throw me to the wolves and I'll return leading the pack!
3,043
May 2009
nscalerr
|
Post by Nscalerr on May 18, 2020 8:17:58 GMT -8
Scrub that idea then, I will have to keep fiddling and see if I can find something a bit more specific. Update on the pc. Unfortunately, the fix you suggest will effect the entire textarea, so if you have multiple lines then you will hide the first character of every line.. Tested that today and I see what you mean!
|
|
inherit
140147
0
Nov 19, 2024 5:07:22 GMT -8
Nscalerr
Throw me to the wolves and I'll return leading the pack!
3,043
May 2009
nscalerr
|
Post by Nscalerr on May 19, 2020 0:51:47 GMT -8
Todge the following does not appear at this stage to be causing the problem that the other version did. I will leave it in place, in the Global Header of my forum, for more testing. /* Fix for indent in bbcode editor. */ .form_post_edit .bbcode-editor textarea { text-indent: -7px; }
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on May 19, 2020 3:14:32 GMT -8
Todge the following does not appear at this stage to be causing the problem that the other version did. I will leave it in place, in the Global Header of my forum, for more testing. /* Fix for indent in bbcode editor. */ .form_post_edit .bbcode-editor textarea { text-indent: -7px; } Better, but it will only work if you start your post with a smiley, otherwise you will still hide the first character of the first line when you edit a post.. I should have told you that I tried the CSS route, at least as far as my knowledge of CSS goes anyway, sorry about that. I did get a fix but it didn't work in Safari.. For some reason it appears to be behaving itself now.. Try this version... Version 3.2.93
|
|
inherit
140147
0
Nov 19, 2024 5:07:22 GMT -8
Nscalerr
Throw me to the wolves and I'll return leading the pack!
3,043
May 2009
nscalerr
|
Post by Nscalerr on May 19, 2020 4:23:35 GMT -8
This version appears to be working.
|
|
inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Post by aRMY83 on May 19, 2020 9:58:16 GMT -8
Hello Nscalerr and Todge, Just gave the v3.2.93 a go and it's working just fine on this end with no indent issues.
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on May 19, 2020 17:12:34 GMT -8
Thanks guys.. I'll submit this to the library.
|
|