• Hello, 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?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Pektsekye

    (@pektsekye)

    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

    Thread Starter denizhan486

    (@denizhan486)

    I made it thanks to you

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Sort fail’ is closed to new replies.