Display Filtered Results on Custom Template
-
Currently the filtered results are displayed using taxonomy.php. I have several custom post types, but I’m only using this plugin to filter taxonomies within the Documents custom post type.
taxonomy.php is used for other taxonomies, so I’m unable to customize that template to my liking without messing up the display of other taxonomies.
Is there a way to specify which template is used to display the filtered results?
One more issue. I tried setting the base URL to my documents page using the following code in my themes functions.php
function my_qmt_base_url( $base ) { return get_page_link( 22 ); } add_filter( 'qmt_base_url', 'my_qmt_base_url' );
It was successful in setting the base URL, but now when I select terms to filter the search and hit Filter, the URL query seems correct, but the actual page is just refreshed with no changes to results.
Any help is greatly appreciated.
- The topic ‘Display Filtered Results on Custom Template’ is closed to new replies.