Forum Replies Created
-
Hello Roger,
Thanks for your replay , for the default tab i Meant subnav which inside the navbar
for example in activity tab which inside the member profile the default subnav is “personal” i want to change it to something else , and it’s configuration not written in https://codex.buddypress.org/how-to-guides/changing-internal-configuration-settings/for the custom activity query i saw the post you gave me before writing my post and try to do something like it to make it work with me and failed
I’m using WP 3.0 and BP 1.2.5.2
Again thanks for your replay and help
Regards
i tried to do as you said and it gave me error
“Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘my_eombed_wmode’ not found or invalid function name in /home/wp-includes/plugin.php on line 166”did you moved “events” folder to the theme directory ?
Same thing with me BP 1.2.5.2 and wordpress 3.0
Hello ,
Thanks for your replay , as a temporary solution i solved it with jquery by using this code
jQuery(’embed’).attr(‘wmode’,’Opaque’).wrap(‘
‘);Hello
I found The solution i need to add screen function to work as controller and print the content throw it
and this is the code for doing that
add_action( ‘bp_template_title’, ‘bp_wall_screen_one_title’ );
add_action( ‘bp_template_content’, ‘bp_wall_screen_one_content’ );
bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/plugins’ ) );function bp_wall_screen_one_title()
{
_e( ‘wall’, ‘acticity’ );
}/*
* This function to Add content to our page
*/
function bp_wall_screen_one_content() {
do_action( ‘bp_wall_screen_one_content’ );
bp_core_load_template( apply_filters( ‘bp_activity_template_my_activity’, ‘members/single/home’ ) );}
Regards
Ahmed