plugin to search entire posts, blogs, forum, users [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 9 years ago. Improve this question hi can anyone recommend a good search engine plugin that allows the users to search for posts, blogs, forums, users, etc … Read more

Template tags for Buddypress

Is there a place that shows all available template tags and how to use them similar to how wordpress does? I’m trying to link to a profile within a loop. Ex of output <a href=”http://www.mysite.com/members/Tom/”>Tom’s Profile</a> Tried this <?php echo( bp_core_get_userlink() ) ?> but it errors out This gives me the author name and url … Read more

Has anyone seen a ‘visual anatomy’ type graphic of the Buddypress plugin?

As someone learning WordPress for the purpose of customizing a Buddypress installation, I’m looking for a graphic representation of how Buddypress works and augments a standard WordPress Multi-User installation. There are a number of examples of WordPress diagrams including this one by Yoast. 1 Answer 1 I don’t think there is one. The only difference … Read more

BuddyPress – How to add logout in nav menu

How to add a logout option to the main nav menu (not to the top bar) in BuddyPress? 1 Answer 1 Google is your friend. Here is a snippit I found I didn’t test it but seems logical. // functions.php function add_login_logout_link($items, $args) { if(is_user_logged_in()) { $newitems=”<li><a title=”Logout” href=””. wp_logout_url(‘index.php’) .'”>Logout</a></li>’; $newitems .= $items; } … Read more

Exclude User from Activity Stream in BuddyPress?

I’d like to exclude a specific user account from showing up in the activity stream. I found this code that’s supposed to exclude the Admin. Any clue how to exclude a specific user? (this code goes in bp-custom.php) <?php add_action(“plugins_loaded”,”bpdev_init_sm_mode”); function bpdev_init_sm_mode(){ if(is_site_admin()) remove_action(“wp_head”,”bp_core_record_activity”);//id SM is on, remove the record activity hook } ?> Thank … Read more

How can I add an image field to BuddyPress Extended Profile Fields? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Your question should be specific to WordPress. Generic PHP/JS/HTML/CSS questions might be better asked at Stack Overflow or another appropriate site of the Stack Exchange network. Third party plugins and themes are off topic. Closed 7 years ago. Improve this question I’m working with … Read more

I’m trying to Add a new Buddypress menu tab and it is not showing up [closed]

Closed. This question is off-topic. It is not currently accepting answers. Your question should be specific to WordPress. Generic PHP/JS/HTML/CSS questions might be better asked at Stack Overflow or another appropriate site of the Stack Exchange network. Third party plugins and themes are off topic. Closed 7 years ago. Improve this question question: I am … Read more