Conversation
supportHello, It is a small plugin but it works very well, but it sorts the numerical values as if they were alphabetical, while Woocommerce stretches in the order I want in the original attribute filter, in this plugi; 100 1001 1100 200 like. How can I solve this sorting problem?
Hello, Try to replace the line: ORDER BY terms.name"; with: ORDER BY cast(terms.name as unsigned)"; in the file: /wp-content/plugins/attribute-dropdowns/Model/Selector.php Stanislav
I made it thanks to you
Hello, Try to replace the line: ORDER BY terms.name"; with: ORDER BY cast(terms.name as unsigned)"; in the file: /wp-content/plugins/attribute-dropdowns/Model/Selector.php Stanislav
I made it thanks to you