I added some filters for products to the widget areas.
If I add a sidebar the filters show as expected.
If I create a layout with 2 columns, 1: products and 2: widget area, nothing shows up.
Is there a special setting or something so the widget area works in the builder?
Thanks.
Hey peterolle,
Thank you for the inquiry.
The widget will only display if the following conditions are not true.
if ( ! is_shop() && ! is_product_taxonomy() ) {
return;
}
The condition above restricts the display of the filters on the default shop page and the product category pages. The widgets will not display if the Advance Layout Builder is active or if the custom shop page is enabled.
Best regards,
Ismael
Hey Ismael.
I am using the builder for products at the left and I want filters at the right.
Not possible then?
Hi,
The filter widgets will only display on the base shop page and the product category pages. Unfortunately, this condition is defined in the WooCommerce core files (woocommerce/includes/widgets/class-wc-widget-layered-nav.php, line: 159), so we won’t be able to modify it.
Best regards,
Ismael
Thank you Ismael, you can mark this as solved.