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

    Hi,

    I have these problems with my forum section:
    1. I can’t see the topic title, breadcrumb on the individual page. And I also notice that the layout was different as it used to be (when I just installed the bbpress). I don’t see the conversation box – the gray line surrounding the conversation.

    2. How do I change the layout to have sidebar like this forum support? As mine like now is a full page without sidebar.

    I have tried to deactivated plugins but still didn’t see any changes.
    For more detail, please refer to the url I include in this topic. Could you please advise?

    #1019813

    I have found the setting for the sidebar (no.2). So, only the no.1 I would like to seek for advice. Thank you

    #1020439

    Hi etcc_1002,

    Can you disable caching and minification for now?

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Do you have a screenshot of what it is supposed to look like?

    Best regards,
    Victoria

    #1020548

    Hi Victoria,

    Thank you for your reply.
    I have disabled the plugins for now.

    The overall look should be similar to this kriesi forum I suppose? What I am missing are the title, breadcrumbs as well as the grey box as shown on the screenshot here. https://drive.google.com/open?id=1PzYYu6RHfQqme0BgbtcILNHmSAPD420l

    My login as attached.

    Thank you.
    Regards,
    Tracy

    #1021460

    Hi,

    Thank you for the update. You can enable the title and breadcrumb container for the topics or forum posts. Add this filter in the functions.php file.

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 50, 1);
    function avf_header_setting_filter_mod($header_settings) {
    	if ( is_singular('topic') ) {	
    		$header_settings['header_title_bar'] = "title_bar_breadcrumb";
        }
    
    	return $header_settings;
    }

    Best regards,
    Ismael

    #1021589

    Hi Ismael,

    Thanks for your help! It works!
    And also I have figured out about the missing grey line box.
    The problem is on the “reply threading” setting for the forum. If we checked the option (enabled), it causes the grey box to disappear or misaligned. I unchecked it and it’s fine now as you can see on the link I provide below.

    Thank you

    Regards,
    Tracy

    #1022167

    Hi,

    Thanks for the update. Can you provide a screenshot of the “reply threading” issue? I’m not really sure what it means.

    Best regards,
    Ismael

    #1022248

    Hi Ismael,

    Sure. What I am referring to is the setting for the forum.
    There is this option to enable threaded (nested) replies to certain level deep (please see the screenshot from the link)
    https://drive.google.com/open?id=1uDgmxyowNHVl5pwi1BDeNoOU9Rt4Zrzn
    If I didn’t checked or unable it, everything is okay. The grey box only disappears when I enable or checked it.

    Let me know if you need further detail.

    Thank you.
    Regards,
    Tracy

    #1022519

    Hi,

    Thanks for the info.

    You can try this css code to bring the border back.

    #top .main_color .bbp-reply-content, #top .main_color .bbp-topic-content, #top .main_color .bbp-body .super-sticky .page-numbers, #top .main_color .bbp-body .sticky .page-numbers, #top .main_color .bbp-pagination-links a:hover, #top .main_color .bbp-pagination-links span.current {
        background: #fff;
        min-height: 68px;
        text-align: left;
        overflow: hidden;
        border-radius: 2px;
        padding: 7px 20px;
        border-style: solid;
        border-width: 6px;
        position: relative;
        margin-left: 0;
        margin-right: 0;
    }
    
    -reply-author, .forum-search #bbpress-forums div.bbp-reply-author, .bbp-user-page #bbpress-forums div.bbp-reply-author, .forum-search #bbpress-forums div.bbp-topic-author {
        width: 75px;
        position: relative;
    }

    Best regards,
    Ismael

    #1024154

    Hi Ismael,

    Thanks! it works!

    #1024160

    Hi Ismael,

    I notice it did bring back the grey line but still there is something wrong with the alignment on the top, below the title. I don’t think the gap should be that big and if you can see, there is a gray color kind of arrow shape on the left.

    For example page, please refer to the link I provide.

    Thank you.
    Regards,
    Tracy

    #1024655

    Hi,

    That is the default topic or forum header. Use this css code to hide it.

    #top .bbp-replies .bbp-header {
        display: none;
    }

    Best regards,
    Ismael

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.