Re: Skeleton Component
I’ve been poking through the skeleton component and was able to get everything displaying properly at least. Here’s the changes I’ve had to make so far to get it working with BP 1.2 and WP 2.9.2.
Change manage-options to manage_options in the below line:
add_submenu_page( 'bp-general-settings', __( 'example Admin', 'bp-example' ), __( 'example Admin', 'bp-example' ), 'manage_options', 'bp-example-settings', 'bp_example_admin' );
add_action( 'admin_menu', 'bp_example_check_installed', 12 );
– add a priority (12 in this case)
Change
bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'plugin-template' ) );
to
bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );