Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @elsoar,​​

    Unfortunately, I am not sure if I have understood your concern. In order for us to better assist you, could you please provide more details about the issue you are experiencing?

    Kind regards,​
    Aradhy 😊

    Thread Starter elsoar

    (@elsoar)

    6 days later you tell me you don’t understand me! Oh my god.

    Anyway, I mean I can’t find my bbPress topic titles on Astra template.

    Like:

    By the way, the titles appear naturally with other templates.

    Hi @elsoar,

    Apologies for the delay! I can see the same behavior on my dev site. I am checking this with our team and I will update this thread once I have anything to share.

    Kind regards,
    Aradhy 😊

    Hi @elsoar,

    We’re included with some urgent update issues, apologies for the long delay.

    You can fix the issue by updating the Astra theme to the latest version and adding the following custom filter to the functions.php file of the child theme:

    add_action( 'after_setup_theme', function() {
        remove_filter( 'astra_single_layout_one_banner_visibility', 'astra_bbpress_issue', 50 );
    
        /**
         * Custom filter to override bbPress & BuddyPress compatibility without using is_bbpress().
         *
         * @param bool $value Existing filter value.
         * @since 4.1.0
         */
        function custom_astra_bbpress_issue_override( $value ) {
            if ( class_exists( 'bbpress' ) && ( bbp_is_single_user() || bbp_is_search() || bbp_is_topic_tag() ) ) {
                return false;
            }
    
            if ( function_exists( 'buddypress' ) && is_buddypress() ) {
                return false;
            }
    
            return $value;
        }
    
        add_filter( 'astra_single_layout_one_banner_visibility', 'custom_astra_bbpress_issue_override', 50 );
    });

    Here’s a doc that will help you add the code: [Link to doc]

    Kind regards,
    Aradhy 😊

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Missing titles in bbPress’ is closed to new replies.