Archive

Archive for the ‘BP Profile Search’ Category

BP Profile Search 2.7

October 14th, 2011 andrea No comments

I’ve recently released BP Profile Search version 2.6 and then version 2.7 to address the compatibility issues with BuddyPress 1.5.

But… the Age Range feature is not working yet, because in BuddyPress 1.5 the datebox field values are stored as a date string, not as a timestamp.

I haven’t found a way to fix this yet, and I’ll welcome your ideas and help. Thanks!

Categories: BP Profile Search

BP Profile Search 2.5

March 14th, 2011 andrea No comments

This new version is simply an update for BuddyPress 1.2.8 multisite installations.

Thanks to Gopherboy who reported this issue and suggested this update.

Categories: BP Profile Search

Patch for BuddyPress 1.2.8

March 1st, 2011 andrea No comments

An important patch to BP Profile Search suggested by Gopherboy:

If you update WordPress to 3.1 and Buddypress to 1.2.8 and use multisite this will no longer work because Buddypress uses 3.1′s new network_admin dashboard. A quick change to line 30 of bps-main.php will fix this problem.

Find the following line:

add_action ('admin_menu', 'bps_add_pages', 20);

And replace it with this:

#add_action ('admin_menu', 'bps_add_pages', 20);
add_action (is_multisite()? 'network_admin_menu': 'admin_menu', 'bps_add_pages', 20);

This will allow the plugin to work with multisite enabled.

Categories: BP Profile Search

BP Profile Search 2.4

February 14th, 2011 andrea No comments

This plugin update contains two improvements:

1) A workaround for a strange bug, where in a few installations WordPress was unable to activate the plugin if its main file was named ps-main.php. So I had to change the file name, which is now bps-main.php.

2) A fix for those sites that have more than one members list in their Members Directory page. This requires a little explanation.

BP Profile Search works by filtering the members list, and usually there is only one members list in the Members Directory page.

When widgets or other plugins added more lists, BP Profile Search was always filtering the first list in the page, so all your searches always returned the full members directory, while in some cases the search results could appear in a widget.

This version allows you to specify which is the right members list to filter. If your searches always return the full members directory, try changing the Filtered Members List value in the Advanced Options tab.

BP Profile Search 2.4 is available in the WordPress Plugin Directory and in the BuddyPress Plugin Directory. You can find the documentation and post your comments in the plugin Documentation and Support page.

Categories: BP Profile Search

BP Profile Search 2.3

January 24th, 2011 andrea No comments

BP Profile Search 2.3 adds the following improvements:

1) In the plugin admin page you can specify the search mode to be used for text fields. You can choose between:
– partial match, where a search for John matches field values of John, Johnson, Long John Silver, and so on;
– exact match, where a search for John matches the field value John only.

In both modes the wildcard characters % (percent sign), matching zero or more characters, and _ (underscore), matching exactly one character, are available to your visitors to better specify their search.

2) You won’t need to change the plugin folder name any more. I’ve found a workaround so the plugin admin page link is always correctly generated.

I wish to thank you for your interest in BP profile Search and for your suggestions and bug reports. As usual, BP Profile Search is available in the WordPress Plugin Directory and in the BuddyPress Plugin Directory. You can find the documentation and post your comments in the BP Profile Search Documentation and Support page.

Categories: BP Profile Search