Forum Replies Created
-
AuthorPosts
-
andrea
KeymasterHi Malik,
Yes, the downside is that you have to manually update the drop-down profile field.
If the options are too many or change frequently that’s not easy, but with the current plugin version I can’t think of a better solution. Sorry!
andrea
KeymasterHi Malik,
Unfortunately that’s not possible, unless you change the BuddyPress profile field type to drop-down. But probably this is not what you want?
andrea
KeymasterHi Kenneth,
I’ve removed your login credentials, because this forum is public. I urge you to change those credentials immediately.
About your question, that page is part of your theme, Gwangi, and the template is not provided by BP Profile Search. I suggest you ask the Gwangi team for advice.
andrea
KeymasterHi Jake,
Probably you could use the ‘hidden filters’ feature, see:
https://dontdream.it/bp-profile-search-4-8/
Is that what you need?
January 27, 2021 at 3:55 pm in reply to: Leading and trailing spaces in text search fields cause search to fail #11067andrea
KeymasterYou are welcome!
January 26, 2021 at 4:24 pm in reply to: Leading and trailing spaces in text search fields cause search to fail #11065andrea
KeymasterHi James,
Leading and trailing spaces are included in the search string by design but, if you wish to remove them, you can add this code to your bp-custom.php file:
add_filter ('bps_request', 'trim_values', 10, 3); function trim_values ($request, $type, $form) { $key= 'field_45_contains'; if (isset ($request[$key])) $request[$key] = trim ($request[$key]); return $request; }
Replace 45 with the actual ID of the field you want to trim.
andrea
KeymasterHi Erik,
Which WordPress theme and which Menubar template are you using?
January 9, 2021 at 5:19 pm in reply to: Searching for a Field Which is not in the Searcher Profile #11051andrea
KeymasterHi Khalid,
Thank you for your report.
I was able to reproduce the bug and, luckily, it was an easy fix.
Please try the new BP Profile Search version 5.3.5!
andrea
KeymasterHi Max,
The search modes appear in the search forms and in the active filters area before the members directory.
In both cases there is a BP Profile Search template you can modify to better suit your needs: bps-form-default.php for the search forms, and bps-filters.php for the active filters area.
December 14, 2020 at 6:25 pm in reply to: Cant edit CSS class “.ui-accordion-header-icon .ui-icon .ui-icon-minus” #11046andrea
KeymasterYou’re welcome, I’m glad it worked for you!
December 14, 2020 at 2:35 pm in reply to: Cant edit CSS class “.ui-accordion-header-icon .ui-icon .ui-icon-minus” #11044andrea
KeymasterHi Patrick,
The CSS of your jQuery UI Theme is:
https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css
If you look for the lines:
.ui-state-active .ui-icon, .ui-button:active .ui-icon { background-image: url("images/ui-icons_ffffff_256x240.png"); }
you can see that the icon is an image (actually it’s part of a larger image).
To replace it, try adding to Customize -> Additional CSS the following lines:
.ui-state-active .ui-icon { background-image: url("https://code.jquery.com/ui/1.12.1/themes/base/images/ui-icons_444444_256x240.png") !important; }
December 14, 2020 at 12:23 pm in reply to: Cant edit CSS class “.ui-accordion-header-icon .ui-icon .ui-icon-minus” #11042andrea
KeymasterHi Patrick,
Which jQuery UI Theme are you using for your search form?
andrea
KeymasterHi Trevor,
BP Profile Search should work as you expect, it should show only those members who match the search criteria.
If that doesn’t happen, probably there is another plugin that interferes with the search. You can try to deactivate other plugins and see if the problem goes away.
If everything else fails, I could take a look at your test site, but I’ll need a WP admin access to investigate. If you agree, you can share it privately using my Contact page.
andrea
KeymasterHi Max,
What you need is a modified form template, that adds the search fields on a grid suitable for your theme, possibly using the same CSS of your theme.
Unfortunately I don’t have a solution ready for this use case but, if you or your developer want to modify the standard form template, you can find some information in this page:
-
AuthorPosts