Oliver Reimann
Oliver Reimann
Ich habe das Problem gerade auch festgestellt (bei "Mayday" habe ich nach "überlebend" gesucht und die Episode "Ein Überlebender" wurde nicht gefunden; erst, als ich das Ü groß geschrieben habe)....
No, I disabled this plugin (and have no other solution yet). :-(
Thx! How do you use "product_attribute_sorting_dropdown"?
How can I integrate a select box for the taxonomy into the page "/wp-admin/edit.php"? When I call your function "product_attribute_sorting_dropdown" and rewrite the code for "post_tag", then a select box...
Okay, I found a solution: https://wordpress.stackexchange.com/questions/578/adding-a-taxonomy-filter-to-admin-list-for-a-custom-post-type Now it works! :) Here is my complete solution: ``` add_action('parse_query', 'filter_posts_by_tag'); function filter_posts_by_tag($query) { global $pagenow; $paramName = 'taxonomy'; $q_vars = &$query->query_vars; $isPostsPage...