Are you saying its just not going to work for me or that you are aware of the problem and you are going to fix it?
the problem is that there is a bug in WordPress which until it gets patched this problem will persists.
To get around this issue, I have added an extra functionality to allow you to display your page, but that requires you to put some code in your functions.php file.
If you are not sure what to do, try putting the following code in your functions.php file,
add_filter('reorderpwc_filter_multiple_post_type', 'filter_my_ranked_post_type', 10, 4);
function filter_my_ranked_post_type($type, $post_types, $taxonomy, $wp_query){
/* String $type post type to filter.
* String $post_types post types associated with taxonomy.
* String $taxonomy being queried.
* WP_Query $wp_query query object. */
if( in_array( $taxonomy, array('product_cat', 'product_tag') ) && in_array('product',$post_types) ) $type = 'product';
return $type;
}
-
This reply was modified 4 years, 6 months ago by Aurovrata Venet.
-
This reply was modified 4 years, 6 months ago by Aurovrata Venet.
-
This reply was modified 4 years, 6 months ago by Aurovrata Venet. Reason: corrected code, added link