Forums › Forums › Search & Filter Pro › ugly design
- This topic has 22 replies, 2 voices, and was last updated 8 years, 9 months ago by
Trevor.
-
Trevor(Private) February 15, 2017 at 6:33 pm #90409
I think it may be easier to use a different Display Results type as your theme has a hook to allow this:
https://docs.appthemes.com/hook/appthemes_before_blog_loop/
I will try to code this tomorrow for you. This way it will use your theme’s own code for the results appearance.
Trevor(Private) February 16, 2017 at 5:52 pm #90750So, for clasipress theme (or any other appthemes theme) users, edit the child theme functions.php file and add this to the end of the file (the file should NOT have
?>at the end, so if it does, remove that line!!)function add_search_filter_before_page_loop() { do_action('search_filter_query_posts', 3737); } add_action( 'appthemes_before_blog_loop', 'add_search_filter_before_page_loop' );Where 3737 is the form ID number (so change to yours).
and use the As an Archive method with this.
-
AuthorPosts