wachtler 0 Report post Posted April 26, 2011 Building a membership directory with platform pro and buddypress at http://66.147.244.210/~sipsorg/members/ I would like to add some links under "Members Directory" i.e. http://66.147.244.210/~sipsorg/members/?s=Builder What is the easiest way to accomplish this? Can't seem to find the file which I would need to edit. Share this post Link to post Share on other sites
cmunns 16 Report post Posted April 27, 2011 well it depends on where you want the links added on that page Share this post Link to post Share on other sites
wachtler 0 Report post Posted April 27, 2011 Above the member search bar and below the page title "Members Directory". Share this post Link to post Share on other sites
wachtler 0 Report post Posted April 27, 2011 ... or below the "all members (189)" link Share this post Link to post Share on other sites
cmunns 16 Report post Posted April 27, 2011 Try adding this to your -Base functions.php file ` add_action('bp_before_directory_members_content','my_list'); function my_list(){ echo 'test'; } ` What happens? Share this post Link to post Share on other sites
wachtler 0 Report post Posted April 28, 2011 Thanks! This works great, although only works on the platformpro functions.php file, not the base functions.php file. Share this post Link to post Share on other sites