Last active
November 10, 2017 13:17
-
-
Save thecodepoetry/45eb4f9d6ce40d06c802 to your computer and use it in GitHub Desktop.
buddypress fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_action( 'get_header', 'dt_buddypress_template_config', 10 ); | |
| function dt_buddypress_template_config() { | |
| $config = Presscore_Config::get_instance(); | |
| if( bp_current_component() ){ | |
| $config->set( 'sidebar_position', 'disabled' ); | |
| $config->set( 'footer_show', '0' ); | |
| } | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
try this in your functions.php