Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Woocommerce filter setup? › Reply To: Woocommerce filter setup?
Hi,
1. Yes, you can do that here: https://i.imgur.com/1G54wqT.png
2. Only via custom CSS and transitions, something like:
.asp_r .item:hover {
transform: scale(1.05);
}
.asp_r .item {
transition: all 0.1s linear !important;
}
3. Mostly it’s inherited from the theme, you may need to use custom CSS:
.asp_ss form fieldset legend {
font-size: 22px !important;
}
4. Only via custom code and to some views. Check this knowledge base.
5. There is a box shadow around the box, you can remove it here or use this:
.asp_r .item {
box-shadow: none !important;
}
About the filter. The price range may work, because that is a custom field. Custom fields are stored very simply, those are not objects with IDs, but data in the meta table. If the field name matches in the other database (which does) then it will work. The price range default values may not be fetched as those are stored in the other site table, but if manually set, they will work just fine.
Unfortunately the other filters are taxonomy terms, those are stored by ID, so this is not possible.