Forums › Forums › Search & Filter Pro › display results on the same page
- This topic has 35 replies, 2 voices, and was last updated 8 years, 4 months ago by Anonymous.
-
Trevor(Private) July 8, 2016 at 9:59 am #50544
Hey
So, I took a look and the key file is this one:
wp-content/themes/kloe/framework/modules/blog/blog-functions.php
At lines 78-83 you will find this:
$query_array = array( 'post_type' => 'post', 'paged' => $paged, 'cat' => $category, 'posts_per_page' => $post_number );
If you only have one search, this MIGHT work:
$query_array = array( 'post_type' => 'post', 'paged' => $paged, 'cat' => $category, 'posts_per_page' => $post_number, 'search_filter_id' => '2867' );
But there are issues with this approach. Every update to the theme you do would undo this. A chat on Skype would be a good thing.
-
AuthorPosts