Sort attributes

Hello,


Is there a way to sort the ATTRIBUTES so I can decide which attribute to be shows 1st and which 2nd.


This is very important for me in the filters offscreen pop up.


Thank you.

Comments

  • Hi,

    Please always attach a link to your website so we can check it out. If the page is offline(localhost), then our help will be limited. You will have to contact us when the page is online. Also, please make sure that the page is not under maintenance before you provide us with the link.

    It is always a good idea to also attach a screenshot showing what you refer to.

    Thanks

  • Sorry for the link. I thought it is a general question:

    https://finecrystals.eu/produkti/watches/women-watches/


    1. there are 10 attributes and I need to manually order them :


    for example the GENDER/ПОЛ filter should be first and not last as people first select gender then then color for example


    2. I am attaching screenshot from the attributes, but I am not sure if this will help.


    Thank you

  • There is no option for that, but it can be done with a Custom CSS code.

    Like this for example:

    .mfn_woo_attributes form{
     display: flex;
     flex-direction: column;
    }
    .mfn_woo_attributes form .mfn-vr:nth-child(6){
     order: 1;
    }
    .mfn_woo_attributes form .mfn-vr:not(:nth-child(6)){
     order: 2;
    }
    .mfn_woo_attributes form .mfn-btn{
     order: 3;
    }
    

    Best regards

Sign In or Register to comment.