RSS feed URL for post comment shows HTML source code of page
I found the culprit. The issue is due to a conflict with my page builder plugin – Live Composer. I have reported a bug to them.
I found the culprit. The issue is due to a conflict with my page builder plugin – Live Composer. I have reported a bug to them.
this code may help you $status = get_option(‘comment_registration’); // 1 : Yes , user must be registered and logged in for commenting // 0 : No (default) You can use the following code for the comment section if (comments_open($postId)) { if (get_option(‘comment_registration’) == 0 || is_user_logged_in() ){ //render comments section }else{ echo “You must login … Read more
Comment turned Invisible
I’d hazard a guess that it isn’t possible — at least not in this exact way — because of that default: return false; part of the code you reference: a custom value of the comment status will hit that and the function will stop immediately. However, have you thought about using a comment metavalue to store … Read more
There’s no such thing as a depth 0 comment, and it should never happen, here is your problem: function start_el(&$output, $item, $depth = 0, $args = array(), $id = 0) { $output .= var_dump($depth); No depth incrementing is happening so it is always 0. start_el has several responsibilities as part of the walking, and for … Read more
How can comments be turned off for media attachments on WordPress?
How to Allow Users to Select Recipients In a WordPress Comment section?
How to make comments reply work in my website?
I found this snippet & it seems working: https://www.businessbloomer.com/woocommerce-override-single-product-settings/ So I guess my problem is solved.
How stop the process of submitting a comment if a fields are empty?