BP Profile Search with limited range
BP Profile Search with limited range
BP Profile Search with limited range
The WordPress Setting API should provide everything you need, it even automatically stores values IIRC. As buddypress is built on top of WordPress I assume this work for buddypress as well.
By default, only one post is displayed on the page I can see several posts on your main page(6 total), please clarify what you mean. with a small ting of comments. Sorry, what? More details/clarification please. Would have liked to have posted this as a comment but i’m not sure if you can quote properly … Read more
thanks for sharing your script with us. It’s totally normal that this script results in a blank screen because it does not do any output. So once you have requested it, it should have created the groups. UPDATE: If it did not create the groups, then the script failed. It’s highly likely you’ve made an … Read more
Super Admin > Users. Screen Options (top right) > Show on screen __ users. Be careful, listing hundreds of users could kill your server. Heh!
The reason it’s not working in the sidebar is likely because the sidebar content is outside the Loop, and $post data, and thus, $post->post_author, are only available inside the Loop. You could try setting a variable equal to $post->post_author while still inside the Loop, and then passing that variable to get_userdata() in your function call … Read more
instead of this: ‘slug’ => ‘group-links’, ‘parent_url’ => $groups_link, Use this: ‘parent_slug’ => $bp->groups->current_group->slug, ‘parent_url’ => bp_get_group_permalink( $bp->groups->current_group ),
I dont know, but you can hide via css or javascript the areas; via css: #id_or_.class_of_elemet { display:none; }
The performance and load speed may be slowed down because of badly coded frameworks, or even well coded frameworks but way too overloaded. so it really depends on what framework or theme builder you are using and each one to its own case. As for enabling BuddyPress, first you will need a theme that is … Read more
Assuming that you are talking about the WP Toolbar, not the BuddyBar. (The basics of doing this for the BuddyBar are the same at the BP level, but the details of rendering the content are different.) It will be instructive to look at how BP itself builds its Notifications dropdown, in bp_members_admin_bar_notifications_menu() (bp-members/bp-members-adminbar.php). It uses … Read more