Solodin
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Update 2.61 Layered Nav No Longer WorksThank you! I found the culprit. It was the single Snippet I had running. Could you explain why this snippet would kill the Layered Nav functionality after the recent update?
function exclude_product_cat_children($wp_query) { if ( isset ( $wp_query->query_vars['product_cat'] ) && $wp_query->is_main_query()) { $wp_query->set('tax_query', array( array ( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => $wp_query->query_vars['product_cat'], 'include_children' => false ) ) ); } } add_filter('pre_get_posts', 'exclude_product_cat_children');Forum: Plugins
In reply to: [WooCommerce] Update 2.61 Layered Nav No Longer WorksDone with no change :-/
Forum: Plugins
In reply to: [WooCommerce] Update 2.61 Layered Nav No Longer WorksI switched over to one of the free themes with no luck. I made sure the filter was listed in the URL when I tested it and it was.
i.e. http://www.bbqgrillpeople.com/product-category/grills/built-in-grills/?filter_manufacturer=blaze
Forum: Plugins
In reply to: [WooCommerce] Update 2.61 Layered Nav No Longer WorksI may have stumbled onto something that might help. If I add Advanced Ajax Layered Nav widgets to a widget area they don’t display AT ALL in the side bars on the front end of the site.
Is there a missing script somewhere or some conflict to be looked for that would stop the Advanced Ajax ones from showing at all and stop the Regular ones from functioning?
Forum: Plugins
In reply to: [WooCommerce] Update 2.61 Layered Nav No Longer WorksNuts 🙁 I deactivated the Advanced Ajax one in the plugins menu and still no-go. Filtering still just refreshes the page and continues to show all the products.
Forum: Plugins
In reply to: [WooCommerce] Update 2.61 Layered Nav No Longer WorksWe’re not using the Advanced Ajax Layered Nav widget. We’re using one simply titled “WooCommerce Layered Nav”. See the screenshot here: http://i.imgur.com/ReE6uZF.jpg
Is this different from the widget you’re referring to?
No, that’s the problem: when a user emails the cart containing an item with options, only the bare parent products is restored when they click the link. Any and all options that were selected are not restored.
Nevermind 🙂 Not sure why I didn’t spot it before but found it in the content.php file.