Forums › Forums › Search & Filter Pro › Conflict between Search Pro and Amadeus theme
- This topic has 3 replies, 2 voices, and was last updated 10 years, 6 months ago by
Anonymous.
-
Anonymous(Private) November 2, 2015 at 7:23 pm #28742
Hello!
Great plugin.Unfortunately, it doesn’t work on my theme – Amadeus free theme. (It works with Twenty Fifteen).
So, I tried to follow all the instructions, but failed.
One filter uses a shortcode. Another uses archive method (Search Form is in sidebar).
Ajax is unchecked in both filters.‘Force is_search to always be true?’ is checked.
Amadeus theme uses loops, not custom queries.
This code
add_filter('wp_title','search_form_title'); function search_form_title($title){ global $searchandfilter; if ( $searchandfilter->active_sfid() == 35889) { return 'Search Results'; } else { return $title; } }with my id doesn’t change anything.
Where’s the problem?
Please, help!Thank you.
Ross Moderator(Private) November 3, 2015 at 5:26 pm #28875Hi Elvira
I can see the issue.
For some reason the Search & Filter Javascript is not being loaded – in the source code of your page I should be able to find a reference to
search-filter-build.jsBut thats not there :/
I think once this is in your source it should work.
To force include the scripts simply add the code from this post:
Thanks 🙂
-
AuthorPosts