nils chr.
Forum Replies Created
-
Forum: Plugins
In reply to: Jetpack comments – child comments drop outThis probably has to do with a setting under “discussion”.
“Enable threaded (nested) comments [5] levels deep”
5 is the default, but it can be raised to as many as 10. I’m guessing that a thread with more than 50 comments probably has some replies that are more than 5 deep.
I think the problem lies deeper than that. – Nested comments don’t have a ‘reply’ button under a comment that is at the deepest level and therefore the settings prevent an entry of comments deeper than what is specified ‘discussion’.
I have tracked the problem in the jetpack/WP source & database and it appears that for some reason the level gets messed up during data retrieval; A comment that has a parent_comment_ID > 0 should not end up at level 1. But it does, sometimes.
The code in that area is very messy and hard to debug. In my opinion the the new comment system by Jetpack is too fancy for its own good.
The way Jetpack hooks into the code is also very ‘selfish’ (quoted from the developer’s comments in the code). It blatantly removed the pre-comment-form filter I had made. That’s not accoording to the WP standards that presses the importance of not breaking other developers’ plugins.
Forum: Developing with WordPress
In reply to: Customized wp_nav_menu()By the way.. in Norway we have a saying about “the shoes of the shoemaker’s children”. And the response utilities here could be better… can I say this ? ref https://www.bloghog.no
Forum: Developing with WordPress
In reply to: Customized wp_nav_menu()Hi, new here. But I saw there was talk about “add a custom CSS class to an LI item”…
The best way to do this would be a jQuery selector.css at page load, in my opinion.