Forum Replies Created
-
Author
-
juvoParticipant
The search field is working differently on these 2 pages
it shows up here with the search option after the fields: http://www.urapture.com/community-2/members/
but not here, where it searches after each field is selected: http://www.urapture.com/about-us/we have this code in the child theme
add_action( ‘kleo_before_page’, ‘search’ );
function search() {
if( !is_home() && !is_front_page() && !bp_is_directory() && !is_page(935) && !is_bbpress() ) {
do_action( ‘kleo_search_form_horizontal’ );
}
}the issue is that the form added by this hook doesn’t read the settings in the backend and uses the ajax form.
i also want to have the search on the same line as the search options.
thanks
Liam
juvoParticipantHi
The search tool I want to change is on each page, see attached. It searches after each field is selected and I would like to select the criteria and then select to search, like on the current sweetdate demo site on the members page.
With thanks
Liam
Attachments:
You must be logged in to view attached files. -
AuthorPosts