Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #430843

    Hello,

    Yesterday I installed BBpress on my website but it seems to have a whole different layout than it should within Enfold. In Enfold it’s missing a lot of things like breadcrumbs for example:

    BBpress Enfold

    How can I fix this?

    Thanks a lot!

    #431314

    Hi JerrelZ!

    Thank you for using Enfold.

    That is the theme’s default forum layout. We chose to remove clutters like freshness, notices etc but you can still display it via css if you want. Please post the website url here.

    Best regards,
    Ismael

    #431385

    Hello Ismael,

    Thanks for your response. The URL of the forum is http://www.fitimprovement.com/forum/fitimprovement.

    #432102

    Hi!

    Which of the element would you like to bring back? If you want the freshness column, for example, add this in the Quick CSS field:

    .bbp-forum-freshness, .bbp-topic-freshness {
      display: block;
    }
    
    li.bbp-forum-info, li.bbp-topic-title {
      width: 68%;
    }
    
    li.bbp-forum-freshness, li.bbp-topic-freshness {
      text-align: center;
      float: left;
      width: 10%;
    }

    Note that bringing this elements back will break the layout of the page. Please hire a freelance developer to redesign the forum page. OR you can contact codeable: http://kriesi.at/contact/customization

    Cheers!
    Ismael

    #432120

    He Ismael,

    Thanks for your reply. At least I want the breadcrumbs back. Now it’s not possible to nagivate back to the main forum after navigating to a topic page.

    Thanks.

    #432608

    Hey!

    You should use the bbPress shortcodes for better flexibility. For example, to display the entire forum index, you can add this in a page:

    [bbp-forum-index]
    

    This will page will display the theme’s default breadcrumbs plus you can add additional content because of the advance layout builder. Refer to this link for more info: https://codex.bbpress.org/shortcodes/

    If you want to enable the breadcrumbs for each topic, make sure that the Enfold > Header > Header Title and Breadcrumbs is enabled.

    Best regards,
    Ismael

    #433087

    Thanks for your response. The problem with activating the breadcrumbs is that it wil be visible on all pages of my site. That’s not what I want.

    I read something about Enfold having a .css file especially for BBpress. Is it possible to just delete that file and get the old styling back?

    Thanks.

    #433992

    Hey!

    You can actually disable the breadcrumbs globally then create a new page. Add the bbPress shortcode, the one above for example, then enable the breadcrumb. It will show the forum index page with all the topics etc plus the breadcrumbs.

    Or enable the breadcrumbs globally then add this in the Quick CSS field to disable it for other pages:

    .stretch_full.container_wrap.title_container {
      display: none;
    }
    
    .bbpress .stretch_full.container_wrap.title_container {
      display: block;
    }

    Cheers!
    Ismael

    #436370

    Hello Ismael, thanks for your response. Although it’s not optimal, it’s good for now.

    I still have one more question. How can I only show the breadcrumbs on a productpage of Woocommerce instead of BBpress pages?

    Thanks!

    #437017

    Hey!

    Please add following code to Quick CSS

    .single-product .stretch_full.container_wrap.title_container {
      display: block;
    }

    Best regards,
    Yigit

    #438276

    You’re the man Yigit, thanks!

    One more thing. How can I hide the sidebar from the BBpress pages? The forum is a little bit small now, because of the sidebar.

    Thanks!

    http://www.fitimprovement.com/forums/forum/fitimprovement/

    #438608

    Hi!

    Please add following code to Quick CSS as well

    .bbpress .content {
      width: 100%!important;
      border: none!important;
    }
    .bbpress .sidebar {
      display: none!important;
    }

    Cheers!
    Yigit

    #438624

    Awesome Yigit!

    My forum starts to look better bit for bit.

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘BBpress is not showing as it should’ is closed to new replies.