• Hot
  • Top
  • New
4
votes

You have ... votes left in this category for this week!

Accordion Categories & Attributes; Assign Attributes to Categories

Part 1 – Accordion Categories and Attributes Request:
The option to have a tidy accordion view that will expand categories and attribute lists on click.

Benefit: This will greatly improve the user experience and visuals of the filter, adding more value to the plugin

Pain-point: Currently, for large stores, several attributes are needed to aid in filtering. This makes for a long list of attributes that look messy

Ideal business requirements:
-Put title inside the accordion box.
-On-click box expands to reveal child list of categories and list of attributes.

—————————–
Part 2 – Assign Attributes to categories
The option to assign attributes to appear in the sidebar filter only for specific categories.

Benefit: Same as above AND,
Prevent the shop page from having too long of a list of attributes, allowing the site to have more targeted advanced filtering in sub-sections of the site.

Pain-point: Same as above

Idea business requirements:
-Add to attribute settings: Label:
“Assign attribute to specific categories”
-Checkbox for Select parent categories: Ajax text field that searches categories and allows the user to select one or many parent categories. Attribute will show in all parent and child categories.
-Select specific categories:
Attribute will only show the specific categories selected.
Assign priority number: Assign what position the attribute filter will appear in the sidebar

Use-case: If I have a hardware store that sells across multiple departments I wouldn’t want to have detailed filters about BBQs on the main shop page. Currently, out-of-the-box woocommerce filters force you to have all or nothing. So the hardware store would have to have ALL attributes on the main shop page in order for them to show up in the BBQ section.
For the BBQ section, I may want the position for the BBQ filters to show in a higher position in the filters list, enabling easy search by BTU’s, fuel type, grill size etc.

Having the combination of accordion and assigning attributes to categories would enable a professional looking filter, making your plugin a great alternative to heavy filter plugins.

Thank you for your consideration

1
votes

You have ... votes left in this category for this week!

Filter Categories at brand or store level

I think this would be useful if not critical to stores who have brand or store pages. For example.

Balenciaga (Brand)
ASOS (Store)

To be able to filter various types of categories for those attributes.

At the moment if you click Balenciaga as a brand and scroll to category its blank as there are no children, but at the top level if you click t-shirts, in the sidebar under “Brand” Balenciaga will show, as there are t-shirts for Balenciaga..

Same for ASOS, as ASOS is a merchant (store) attribute for us, you navigate to Stores – ASOS, you’re presented with an ASOS page showing the various products, navigate to Categories and it is blank, again there are no children, but at top level if you again click t-shirts, jumpers or whatever it may be, under Merchant (Store) ASOS has them products.

Is this possible?

1
votes

You have ... votes left in this category for this week!

Shortcode attribute FFW on the product page

Users love to use tag product (categories+brand, categories+brand+color) for quick access to all products with such characteristics. But tag woocommerce very long boot. Is it possible to do shortcode with FWW?
Something like this [product_cat pa_brend] this shortcode displays the terms related to a product on the product page, the customer can click a term and all products with the same characteristics will be displayed.

1
votes

You have ... votes left in this category for this week!

Filter by brands – Perfect WooCommerce Brands

I’d love to have the option to add a filter by brand (with SEO-friendly URLs). At this moment, this is possible if we’re using an attribute as Brand.

The archive pages for attributes are not very customizable, thus I’d like to use an add-on for brands. I prefer Perfect WooCommerce Brands, but I’d be happy with compatibility with any of the following plugins:
1) Perfect WooCommerce Brands – https://wordpress.org/plugins/perfect-woocommerce-brands/
2) WooCommerce Brands – https://woocommerce.com/products/brands/
3)YITH WooCommerce Brands Add-on – https://yithemes.com/themes/plugins/yith-woocommerce-brands-add-on/

1
votes

You have ... votes left in this category for this week!

FWW Filter Bug

We have a bug on our site..

If you visit here – https://instylr.com/merchant/urban-celebrity

And filter for example via brand on the left – https://instylr.com/filter/urban-celebrity/11-degrees/

This should filter the brand 11 Degrees within the Urban Celebrity archive, however it loads up 11 Degrees across the whole site, so any merchant that sells the brand 11 Degrees is brought up and displayed in the results.

It also occurs here https://instylr.com/filter/asos/adidas/.

Any ideas?

1
votes

You have ... votes left in this category for this week!

Minimized Titles in Filter Widget

Currently, if I have multiple attribute filters set up, the user will have to scroll down half the page to find the filter he needs. I would like an option in the filter widget menu, where I can select that the filter be “closed”, and only the title will be visible. Only when clicked, will the filter terms show up. Many websites have it set up this way, and it is much cleaner looking.

2
votes

You have ... votes left in this category for this week!

FWW Recommended Products

Youtube, Google Play Store and other big boys websites show on their homepages recommended products based on recently viewed products. We can do something similar based on product categories and attributes.

e.g. user visits:

1) Product ID 1:
– product_cat – Mens
– pa_brand – Nike
– pa_colour – White

and

2) Product ID 2:
– product_cat – Mens
– pa_brand – adidas
– pa_colour – Black

FWW Recommended Products widget shows products:

– product_cat – Mens
– pa_brand – Nike OR adidas
– pa_colour – White OR Black
– exclude – Product IDs 1 and 2 // not sure if this is actually necessary

———————————

‘tax_query’ => array(
‘relation’ => ‘OR’,
array(
‘taxonomy’ => ‘product_cat’,
‘field’ => ‘slug’,
‘terms’ => array(‘mens’),
),
array(
‘taxonomy’ => ‘pa_brand’,
‘field’ => ‘slug’,
‘terms’ => array(‘nike’,’adidas’),
),
array(
‘taxonomy’ => ‘pa_colour’,
‘field’ => ‘slug’,
‘terms’ => array(‘black’,’white’),
),
),

I think this is doable and similar to the FWW Recently Viewed Products (Ajax) widget.

It would be nice to have access to this query – just an array of product IDs would be enough – so we can use it in custom templates.