Jacorre
Member
Posted 5 months ago #
After selecting a value for each drop down (I have three), I click submit. The results are shown.
If I go back and click one of the drop downs to do a different search, it only displays the value that I previously picked. Why doesn't it show all values?
Is that what the reset button is for? Is there a way where the reset doesn't have to be used?
Thank you!
http://wordpress.org/extend/plugins/query-multiple-taxonomies/
henkboersema
Member
Posted 3 months ago #
I've got the same problem:S Did you fix it already Jacorre? Or can somebody help us?
henkboersema
Member
Posted 3 months ago #
I Found the answer!
If anyone is interested in this, I found a way to prevent this behaviour.
Find these lines and comment them out as follows:
private function get_terms( $tax ) {
//if ( $this->all_terms )
return get_terms( $tax );
//else
//return QMT_Terms::get( $tax );
}
This of course would be overwritten should a new version of the plugin come out. That is why is never a good idea to change to core files of the plugin. But in case somebody really wants it.