Skip to content

Instantly share code, notes, and snippets.

@thecodepoetry
Last active August 29, 2015 14:16
Show Gist options
  • Select an option

  • Save thecodepoetry/0e9c699ae8437e2b581b to your computer and use it in GitHub Desktop.

Select an option

Save thecodepoetry/0e9c699ae8437e2b581b to your computer and use it in GitHub Desktop.
bbpress fix
function dt_buddypress_template_config() {
if( bbp_is_single_user() ){
$pagid = 35215; //sidebar, footer settings of the page id given will be applied to user profiles
$config = presscore_get_config( );
presscore_config_base_init( $pagid );
}
}
add_action( 'get_header', 'dt_buddypress_template_config', 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment