BuddyDev

Search

[Resolved] Disable Right and Left Panel on Community Builder

  • Participant
    Level: Initiated
    Posts: 2
    Eri on #30311

    I cannot for the life of me figure out how to disable the right and left panels on Community Builder. There isn’t enough content on my to have two panels. Please help!

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 2908
    Ravi on #30312

    Hello Eri,

    You can disable left and right panel by navigating Customizer > Layout > Global. Please check the url set visibility to none to disable

    https://imgur.com/SlLlXZ4

    Regards
    Ravi

  • Participant
    Level: Initiated
    Posts: 2
    Eri on #30316

    I don’t have those options in mine.

  • Keymaster
    (BuddyDev Team)
    Posts: 24149
    Brajesh Singh on #30375

    Hi Eri,
    Hope you are doing well.

    The option to control visibility of the left/right panels are only available in the Community Builder pro theme.

    For the free theme, you can put the following code in your child theme’s functions.php

    
    
    /**
     * Hide the right/left panels for Community Builder Free(In pro, you can control it from customize->Layout section).
     */
    add_filter( 'cb_panel_visibility', function ( $visibility ) {
    	return 'none';
    } );
    
    

    and it will hide the panels.

    Regards
    Brajesh

The topic ‘ [Resolved] Disable Right and Left Panel on Community Builder’ is closed to new replies.

This topic is: resolved