Archive

Author Archive

BP Profile Search 2.5

March 14th, 2011 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 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 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 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

BP Profile Search 2.2

January 3rd, 2011 No comments

BP Profile Search 2.2 introduces the Age Range Search feature.

If you have a birth date field in your extended profiles, you can now search by age range. Your visitors can specify a minimum and maximum age for their search, and they’ll get back the list of members whose age falls between the specified limits.

Of course this feature could be useful in other cases as well, e.g. if you have a field containing the first employment date you can perform a search based on the years of work experience.

I hope you find this new feature useful. If you have questions, please feel free to ask in the BP Profile Search documentation and support page.

Categories: BP Profile Search