Quote from Alex Dovlatov on February 10, 2026, 17:16
Hello
Yes, you can do this! There are two methods:
Method 1: Using Conditional Widgets Plugin
- Install a plugin like "Conditional Widgets" or "Widget Options"
- Add a Text/HTML widget to your sidebar
- Insert WOOF shortcode:
[woof] - In the widget settings, set condition:
- Show only on:
is_product_category('category-1-slug')
Method 2: Using Custom Widget Logic Plugin
Install this plugin: https://github.com/realmag777/Show-WordPress-Widget-by-Logic
Then add logic rules to your widget:
Examples of conditional logic:
Show only on Category 1:
is_product_category('category-1')
Show on Category 1 OR Category 2:
is_product_category(array('category-1', 'category-2'))
Show on all categories EXCEPT Category 3:
is_product_category() && !is_product_category('category-3')
Show only on parent category (not child categories):
is_product_category('parent-slug') && !is_paged()
How to use:
- Create widget with WOOF shortcode
[woof] - Add conditional logic to widget settings
- Widget appears only where you specified ✅
Also read: https://products-filter.com/shortcode/woof
Hello
Yes, you can do this! There are two methods:
Method 1: Using Conditional Widgets Plugin
- Install a plugin like "Conditional Widgets" or "Widget Options"
- Add a Text/HTML widget to your sidebar
- Insert WOOF shortcode:
[woof] - In the widget settings, set condition:
- Show only on:
is_product_category('category-1-slug')
Method 2: Using Custom Widget Logic Plugin
Install this plugin: https://github.com/realmag777/Show-WordPress-Widget-by-Logic
Then add logic rules to your widget:
Examples of conditional logic:
Show only on Category 1:
is_product_category('category-1')
Show on Category 1 OR Category 2:
is_product_category(array('category-1', 'category-2'))
Show on all categories EXCEPT Category 3:
is_product_category() && !is_product_category('category-3')
Show only on parent category (not child categories):
is_product_category('parent-slug') && !is_paged()
How to use:
- Create widget with WOOF shortcode
[woof] - Add conditional logic to widget settings
- Widget appears only where you specified ✅
Also read: https://products-filter.com/shortcode/woof