• When all the values are left blank it goes to the home page.
    Is there a way I can tell it to show all posts instead?

    Perhaps the easiest is to send it to the archive page:
    I used a plugin to create a base taxonomy archive so that the url is like this:
    https://baseurl.com/archive

    Can I direct it to there?
    Thanks

Viewing 1 replies (of 1 total)
  • Yes, just add the following code in your theme’s functions.php file:

    function my_qmt_reset_url() {
        return 'https://baseurl.com/archive';
    }
    add_filter( 'qmt_reset_url', 'my_qmt_reset_url' );
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Query Multiple Taxonomies] if empty show all’ is closed to new replies.