-
Author
Tagged: Search context
-
February 23, 2018 at 20:46 #189605luizzzParticipant
Hello. The search context is not working here.
Just customized in Customizer – Header – Header settings and set all taxonomies but it’s not working.
Search works only in members profiles but only within the ajax search feature.
If i put a name of someone that have a profile in system and press ENTER, always display no results.
February 24, 2018 at 16:33 #189660Kieran_SQModeratorHi,
Thanks for contacting us about the search within BuddyApp, I have done some testing and can confirm that when the enter key is pressed on the search form when searching for a user the returns the no results found page.
I will therefore refer this ticket to a developer for review to look into a possible solution for you. They’ll be in touch with you as soon as they can, Monday to Friday, East European Time.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
February 26, 2018 at 18:41 #189895RaduModeratorHi,
when you hit enter in the search will return the wordpress default search that search only in posts. Only the live ajax search displays the results by post type/buddypress components.Also there is no quick solution to make the default wp search to works like ajax search. We will take this into consideration.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 27, 2018 at 17:01 #193172RaduModeratorHi,
That it’s how it works when you press enter… no quick solution yet but we are working on a search result page including things like ajax live search.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 27, 2018 at 17:38 #193188luizzzParticipantHello. My temporary solution was disabling ENTER keypress on main search and disabling the search button using this jQuery code bellow:
COPY CODEjQuery(document).ready(function($){ $('input#main-search').keypress(function(event){ if (event.keyCode === 10 || event.keyCode === 13) { event.preventDefault(); } }); $('button.header-search-button').click(function(event){ event.preventDefault(); }); });
Maybe it helps
March 27, 2018 at 18:16 #193202RaduModeratorHi,
Nice one, preventing that page to be used, it may help other users, ty for your workaround
Cjeers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘Bugs & Issues’ is closed to new topics and replies.