Support Forum
hmmmm.. perhaps there is a terminology issue here...
quoting means using the quote button on an individual post... see the post icon toolbar... you quote an entire post...
in your post #10, you didnt quote there... did you blockquote?? that would be highlight some text and then hit the blockquote button (the one that looks like double quotes) in the tinymce editor??
Quoting is where @yellow-swordfish and I have been talking about... again, you quote a whole post... you blockquote sections (ie block) of text within a post...
If you quote a post, its limited to the last single blockquote from the quoted post...
if you add individual blockquotes while editing a post, there is no limit...
so basically, it sounds like you want to remove quoting a post limiting it to single blockquote (from previous quoting)??? I dont think that will really do what you want... remember, each time you will get a new set of blockquote display elements... but its possible by adding this code to your sp theme spFunctions.php file
add_filter('sph_quote_content', 'my_quote_content', 10, 2); function my_quote_content($content, $original) { return $original; }
this basically restores the multiple quoting... again, dont think its in the end what you will want, but give it a try...
Visit Cruise Talk Central and Mr Papa's World
I'm a bit confused hehehe
So quote and blockquote are two different things and if you quote a post that has multiple blockquotes, it gets only the last one (but why this limitation?).
So, what I really need, is the ability to quote a whole post with multiple blockquotes and the code you gave me seems to work great atm. I will test it further and I'll give feedback.
THANKS A TON!
Btw what these two numbers, in the first row of the code, mean? That the blockquote limit is 10?
the html/markdown term is blockquote... quoting is just a term we use for when you want to blockquote a whole post... main diff, is as I said, quoting does whole post vs just a section of text...
so the process is two completely different things.. when you quote a post, and another quotes a post with a quote, you get these nested blockquotes... works fine, just most folks found it cumbersome in display because of the nesting... many, many users requested this because of the display oddity...
so when you quote a post, at that time, we strip to the last blockquote...
when you add a blockquote while making a post, the logic/sequence is completely different... Now, when you save a post, we could also apply the blockquote stripping but, of course, we dont..
technically speaking, we could change the code that limits the blockquote to only strip when you have nested blockqotes vs any block quotes... but the code and resources to do so is orders of magnitude larger... so was deemed unnecessary - borne out by nobody complaining until now 🙂
but a filter was put in place so it could be bypassed if needed...
No, the 10 refers to the priority of the filter.. the 2 refers to the number of arguments passed by the filter...
Visit Cruise Talk Central and Mr Papa's World
1 Guest(s)