Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1409871
    darktriadman
    Participant

    Hello,

    How do I turn off the post carousel for all BBPress pages?

    Regards,

    Ivan

    #1410458
    Rad
    Moderator

    Hi there,

    Thanks for writing in.

    Please add this code to your child theme’s functions.php

    add_filter('x_option_x_ethos_post_carousel_enable', 'bbpress_no_carousel', 999)
    
    function bbpress_no_carousel ( $option ) {
    
    return x_is_bbpress() ? 0 : $option;
    
    }

    Hope this helps.

    #1410464
    darktriadman
    Participant

    Testing this…

    #1410466
    darktriadman
    Participant

    That broke functions.php.

    #1410472
    darktriadman
    Participant

    Parse error: syntax error, unexpected ‘function’ (T_FUNCTION) in /home/darktriadman/public_html/wp-content/themes/x-child/functions.php on line 30

    #1410555
    darktriadman
    Participant

    Please check your code syntax..

    #1410570
    darktriadman
    Participant

    FIXED…

    Added this to functions.php:

    add_filter ( 'x_option_x_ethos_post_carousel_enable', 'disable_carousel_for_bbpress');
    
    function disable_carousel_for_bbpress ( $enabled ) {
    if( x_is_bbpress() ) return '';
    return $enabled;
    }

    Many thanks!

    Regards,

    Ivan

    #1410601
    Nico
    Moderator

    Happy to hear that.

    Feel free to ask us again and thank you so much for sharing us the answer. It would really help us and other members of this forum.

    Thank you so much.

  • <script> jQuery(function($){ $("#no-reply-1409871 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>