• Resolved marcaufderheyde

    (@marcaufderheyde)


    So basically my commenting is disabled for some unknown reason. Whenever I try to leave a comment on a blog post (for example: https://www.theyoungauthors.com/poetry/the-chair/), I get an error message that the Page is not found.

    As far as I can tell, it’s none of the plugins I have installed since I disabled all of them to see if that did the trick? Does anyone have any wisdom to offer?

    Commenting is a MASSIVE part of the entire site so I kind of need this to work flawlessly!

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter marcaufderheyde

    (@marcaufderheyde)

    Sorry, bad link posted above. Here’s the example I was talking about: https://www.theyoungauthors.com/poetry/the-chair/

    Please someone help ??

    Kind regards,
    Marc Auf der Heyde

    Thread Starter marcaufderheyde

    (@marcaufderheyde)

    OK, so commenting has sorted itself out somehow! Glad it works!

    I do however also have trouble with setting the default blog post to fullwidth. Can anyone tell me how to do this? I’ve been trying various fixes etc, but it’s not working.

    I don’t want to have to specify for each blogpost that there shouldn’t be a sidebar!

    Thanks in advance,
    Marc Auf der Heyde

    Hey,
    You can use a child theme: https://www.kadencethemes.com/child-themes/

    Then add this function into the functions.php file in the child theme and it will make all your posts be fullwidth:

    add_filter('kadence_display_sidebar', 'kt_blog_post_sidebar');
    function kt_blog_post_sidebar($sidebar) {
      if (is_single() ) {
        return false;
      }
      return $sidebar;
    }

    Kadence Themes

    Thread Starter marcaufderheyde

    (@marcaufderheyde)

    Hey there,

    Thank you so much for the help! This actually worked! Would you happen to know of a similar fix which would be applicable to buddypress pages? I have tried adding custom buddypress fullwidth templates, but seemingly this has not worked. Would be awesome if there was another function I could add!

    Kind regards,
    Marc Auf der Heyde

    Hey, sure try this:

    add_filter('kadence_display_sidebar', 'kt_buddypress_sidebar');
    function kt_buddypress_sidebar($sidebar) {
      if (is_buddypress() ) {
        return false;
      }
      return $sidebar;
    }

    Kadence Themes

    Thread Starter marcaufderheyde

    (@marcaufderheyde)

    Hey Kadence Themes,

    Thank you so much for being so helpful always! This isn’t the first time you’ve helped me either ??

    Kind regards,
    Marc Auf der Heyde

    Glad to hear it!

    Kadence Themes

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Commenting broken?!’ is closed to new replies.