BuddyBoss Home – Web Support Forums Solutions Social MarketPlace Plugin conflict makes footer dissapearing

Viewing 5 posts - 1 through 5 (of 5 total)
  • Question

    #67558
    @smedia

    Hi,

    PressApps Knowledge Base plugin ain’t working well.
    The footer dissapears when viewing the page. When viewing the question itself the footer comes back and the title gets duplicated with 1 of them to the upper left below header section.

    Answers

    #67583
    @vapvarun

    Hi @smedia,
    It’s not possible to add support for all plugins, You can submit plugin from our contact page.
    We will test plugin to identify the issue.

    Regards
    Varun Dubey

    #67586
    @smedia

    Thanks i´ll do that

    #67890

    Anonymous
    @

    Hi @smedia,

    we have filter to show/hide footer conditionally, Please add the following code in your child theme’s function.php to change it.

    
    function change_footer_visibilty( $show ) { 
    if( is_post_type_archive('knowledgebase') ) { 
    return true; 
    } 
    }
    
    add_filter('onesocial_show_footer', 'change_footer_visibilty');
    

    If you have other concerns, just let us know and we will be more than happy to assist you.

    Regards

    Pallavi G
    BuddyBoss Support

    #67914
    @smedia

    Hi Pallavi,

    When i activate this, the footer appears.
    But after that the other pages on the site have no footer anymore.
    Thanks alot so far!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The question ‘Plugin conflict makes footer dissapearing’ is closed to new replies.