Tagged: ,

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #184474

    Hello,

    have setup my Forum. As you can see is on the Forum-Frontpage the sidebar included. I set this in the forum-page.

    But how can I setup the same sidebar for all topics e.g. ??

    Regards

    #184720

    Hey Bruno!

    You can use the “Forum” widget area if you want to display certain widgets on all forum pages. If you want to display a certain sidebar on all forum pages you need to modify sidebar.php. Open up the file and replace

    
            if(!empty($the_id) && is_singular())
            {
                $custom_sidebar = get_post_meta($the_id, 'sidebar', true);
            }
    

    with

    
            if(!empty($the_id) && is_singular())
            {
                $custom_sidebar = get_post_meta($the_id, 'sidebar', true);
            }
            else if(is_post_type_archive('forum') || is_singular(array('forum','topic','reply')))
            {
                $custom_sidebar = 'Forum';
            }
    

    Replace “Forum” with your custom sidebar name if you don’t want to use the default “Forum” widget area for the sidebar.

    Regards,
    Peter

    #184727

    Hey Peter,

    I change the code in line 38 but it didn´t work: Here

    Regards,
    Bruno

    #185084

    Hey!

    But you completely deactivated the sidebar on these pages? BBPress normally will show a sidebar on the right (like here: http://kriesi.at/themes/enfold/forums/ ) you’re using a fullwidth page template at the moment. Maybe you modified a file to remove the sidebar (forum.php, etc.)?

    Cheers!
    Peter

    #185088

    Hey Peter,

    you´re right. I set inside Theme-Options all to “without sidebar”. Turned it on now and it works, fine… Thanks!

    Before I set inside the page with the Shortcode for the forum index the sidebar to right. I thought that inherit this to it childpages…

    It´s very confusing to work with bbPress. Searched a lot in the web, but there is not a lot of actual information to find.

    Please can you tell me how I have to find an userprofil like the profiles on kriese.at ??

    Best regards,
    Bruno

    #185530

    Hey!

    I don’t know if Kriesi used a plugin or some custom code. I’ll mark this topic for him.

    Regards,
    Peter

    #186833

    Hey,

    it will be very nice to become an answer how to set the profiles for bbPress like here in the forum, if it is ok for you to support is…

    How do you have setup the nice Login-Widget for this forum?

    Best regards

    #186976

    Hi:

    I’m also interested in this topic.

    Regards!

    #187686

    Hi!

    For now you can try a login widget like http://wordpress.org/plugins/sidebar-login/ or http://wordpress.org/plugins/login-with-ajax/ – the topic is still tagged for Kriesi and he’ll answer the question when he finished the work on some new theme features.

    Regards,
    Peter

    #187696

    Hey victoriaeducacion,

    installed “login-with-ajax” 3 days ago, and it works ok with some coding… It works with tables and it is important to set the width to percentage values to be responsive… A nice feature is that you can set redirections after Login and Logout…

    But it doesn´t look this nice as Kriesis one.. ;) (hope my spelling isn´t to bad)

    Best regards

    #189179

    Hey!

    Kriesi heavily customized the look of just about any plugin he works with. I’m fairly sure Sidebar login is what is being used for the sidebar here on the support forums and the user profiles I believe are just built into bbPress since 2.0.

    Cheers!
    Devin

    #208075

    Hello,

    i did the code changes but it still displays the sidebar only on the main forum view.

    If i select a sub forum or a thread it will not get displayed anymore.

    # Edit: Okay now it finally works. You have to activate both “Sidebar on Archive Pages” and “Sidebar on Single Post Pages” in the theme settings.

    Thanks

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘bbPres – no sidebar in Topics’ is closed to new replies.