Skip to:
Content
Pages
Categories
Search
Top
Bottom

Hello theme by Elementor


  • pil91
    Participant

    @pil91

    Hi
    I have the following trouble with the ‘Hello’ theme :
    The bbPress root ‘forums’ isn’t displayed correctly with Hello although it’s ok with ‘twenty twenty’.
    hello vs twenty

Viewing 1 replies (of 1 total)

  • tenebralyo
    Participant

    @tenebralyo

    This is a possible fix for this:

    add_filter(
    ‘elementor_pro/utils/get_public_post_types’,
    function($post_types) {
    $post_types[‘forum’] = ‘Forum’;
    $post_types[‘topic’] = ‘Topic’;
    $post_types[‘reply’] = ‘Reply’;
    
    return $post_types;
    }
    );

    Source:
    https://elementor.com/blog/introducing-hello-theme/#comment-58192

    Sadly this could not be the perfect solution, specially if you are using bbpress without buddypress, it seems that you could get 404 pages on user profiles.

    Right now I’m trying to use a combination of bbpress + buddypress, and for me the user profile (buddypress) is working fine.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.