inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,846
January 2015
msg
|
Post by Lynx on Jul 15, 2015 14:35:25 GMT -8
Peter - Would it be alright if I played around with the code on it? I saw you left it open source ... not to mention it might help with my learning process.
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Jul 15, 2015 14:40:05 GMT -8
Peter - Would it be alright if I played around with the code on it? I saw you left it open source ... not to mention it might help with my learning process. Sure, do what you want with it
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,846
January 2015
msg
|
Post by Lynx on Jul 15, 2015 14:52:23 GMT -8
Peter - Would it be alright if I played around with the code on it? I saw you left it open source ... not to mention it might help with my learning process. Sure, do what you want with it Thank you, kind sir!
|
|
Former Member
inherit
guest@proboards.com
222576
0
Nov 21, 2024 19:48:03 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Jul 15, 2015 15:05:40 GMT -8
well im going to keep it just how it is peter, its cool and iv only set it for 1 board where jesus posts a guy on my site i mentioned. thanks
|
|
inherit
110982
0
Jul 9, 2019 11:10:52 GMT -8
monmonmoney
159
September 2007
monmonmoney
|
Post by monmonmoney on Oct 31, 2015 8:20:54 GMT -8
Is anyone having issues with the fading quote plugin not working?
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Nov 3, 2015 3:50:08 GMT -8
monmonmoneyI done some quick tests, no issues. Maybe expand on the issues you are having.
|
|
Sav
Junior Member
Posts: 266
inherit
115211
0
Oct 21, 2024 0:11:57 GMT -8
Sav
266
December 2007
sav
|
Post by Sav on Dec 28, 2021 10:46:07 GMT -8
Excellent plug-in thanks makes my forum much easier to scroll through.
As I noted in my review there seems to be an issue if the quote has an open "div" in the bbcode in front of it, the condensing does not work. Close off the "div" before the quote and it works fine.
May also apply to other tags.
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,846
January 2015
msg
|
Post by Lynx on Dec 28, 2021 12:13:41 GMT -8
Excellent plug-in thanks makes my forum much easier to scroll through. As I noted in my review there seems to be an issue if the quote has an open "div" in the bbcode in front of it, the condensing does not work. Close off the "div" before the quote and it works fine. May also apply to other tags. Just to note - a plugin's review in the library is not the place to post issues, those should go in the plugin's support thread (which you did - thank you). Reviews may not be looked at as often as the support thread, so issues posted there may not get noticed in a reasonable amount of time. I rarely check the reviews of my plugins in the library, as I state in most (if not all) of my plugins that issues should be reported in their respective support threads.
|
|
Sav
Junior Member
Posts: 266
inherit
115211
0
Oct 21, 2024 0:11:57 GMT -8
Sav
266
December 2007
sav
|
Post by Sav on Dec 29, 2021 3:55:17 GMT -8
I think that's called "stating the obvious"
The issue was a part of my favourable review for anyone installing the plug-in.
The issue (and work-around) was also reported here in the support thread for possible resolution.
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,846
January 2015
msg
|
Post by Lynx on Dec 29, 2021 9:14:51 GMT -8
I think that's called "stating the obvious" The issue was a part of my favourable review for anyone installing the plug-in. The issue (and work-around) was also reported here in the support thread for possible resolution. You may be surprised at how it's not as obvious as you may think and in many cases. I've seen a number of issues posted in various plugin reviews (and not just my plugins) that were never put into their support thread - where they should have been posted.
|
|
Sav
Junior Member
Posts: 266
inherit
115211
0
Oct 21, 2024 0:11:57 GMT -8
Sav
266
December 2007
sav
|
Post by Sav on Dec 29, 2021 10:48:11 GMT -8
Perhaps you would be kind enough to leave this thread to the topic the O.P. set it up for.
|
|
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 Jan 3, 2022 21:41:14 GMT -8
The plugin is coded to ignore nested quotes and the way it does that is by targeting only quotes that are direct children of the .message body (anything deeper such as grandchildren, great-grandchildren and so on gets ignored). This is the reason why a quote nested inside a div element or any other element for that matter gets no attention. If you want to fix this you can try modifying the following line in the plugin's code:
var quotes = $("tr.item td.content div.message > div.quote");
to read
var quotes = $("tr.item td.content div.message div.quote").filter(function(x,y){return $(y).closest('.quote_body').length === 0})
instead.
*note: The child combinator (">") is removed and a filter is instead added to test each found quote in turn to see if it is within another quote *caveat: not tested for conflicts
|
|
Sav
Junior Member
Posts: 266
inherit
115211
0
Oct 21, 2024 0:11:57 GMT -8
Sav
266
December 2007
sav
|
Post by Sav on Jan 4, 2022 12:53:15 GMT -8
Thx. will take a look and report back.
|
|
Sav
Junior Member
Posts: 266
inherit
115211
0
Oct 21, 2024 0:11:57 GMT -8
Sav
266
December 2007
sav
|
Post by Sav on Jan 4, 2022 13:18:58 GMT -8
Appears to do the business, have deliberately added open divs, no side effects noted thus far. O.P. has not posted for over six months but will keep an eye on the original plug in being updated. Many thanks, it's a very useful plug in as my forum has some horribly long posts that I can control with manual quote tag addition. Hopefully your fix will solve the problem for the earlier posters as well.
Perhaps a moderator could delete the four irrelevant posts from Dec 28, 2021 at 8:13pm onwards and also this line
|
|
inherit
195082
0
Mar 20, 2022 7:33:21 GMT -8
PF
1,089
June 2013
weedster
|
Post by PF on Mar 5, 2022 16:03:44 GMT -8
Hello Chris, I installed this plug-in on my forum, but it shows on boards that aren't selected in the settings. The description reads that it will only work on selected boards, but I've seen it on boards that aren't selected. How can that be fixed? Thank you.
|
|