I use QMT for one specific post type and the widget appears only on the said post type's archive page. I would need the base URL to be /my-custom-post-type/ but can't get it working.
The closest I've gotten have been with this code:
function my_qmt_base_url() {
return get_page_link( 3 );
}
add_filter( 'qmt_base_url', 'my_qmt_base_url' );
The resulting URL itself is what I want, but the filtering won't work. It shows all posts regardless of their taxonomies and the widget does not "save" the chosen taxonomies into the dropdowns.
What could be going wrong?
http://wordpress.org/extend/plugins/query-multiple-taxonomies/