• Resolved mahadavid

    (@mahadavid)


    Hi, this has been such a useful plugin, thank you.

    One thing I’d like to be able to change…
    I have a different list for people born based on which month they were born, and I’m not sure why they are out of order, but they display out of order, is there any way to change the display order, or anything I could adjust in the database to correct that?

    February
    April
    January
    March
    May
    June
    July
    August
    September
    October
    November
    December

    Thank you!`

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor kishanranawat

    (@kishanranawat)

    Hi @mahadavid,

    Currently, there isn’t any option to change the list display order in the plugin itself. Lists are displayed in the order they were created. You might need to delete and recreate the list as required.

    But we have checked your site and came up with the following custom CSS code which might be useful in changing the order.

    .ig-es-form-list-selection tbody {
        display: flex;
        flex-flow: column;
    }
    
    .ig-es-form-list-selection tbody td {
        display:block;
        width: 100%;
    }
    
    .ig-es-form-list-selection tbody tr:first-child {
        order: 2;
    }
    
    .ig-es-form-list-selection tbody tr:nth-child(2) {
        order: 4;
    }
    
    .ig-es-form-list-selection tbody tr:nth-child(3) {
        order: 1;
    }
    
    .ig-es-form-list-selection tbody tr:nth-child(3) {
        order: 1;
    }
    
    .ig-es-form-list-selection tbody tr:nth-child(4) {
        order: 3;
    }
    
    .ig-es-form-list-selection tbody tr:nth-child(5) {
        order: 5;
    }
    
    .ig-es-form-list-selection tbody tr:nth-child(6) {
        order: 6;
    }
    
    .ig-es-form-list-selection tbody tr:nth-child(7) {
        order: 7;
    }
    
    .ig-es-form-list-selection tbody tr:nth-child(8) {
        order: 8;
    }
    
    .ig-es-form-list-selection tbody tr:nth-child(9) {
        order: 9;
    }
    
    .ig-es-form-list-selection tbody tr:nth-child(10) {
        order: 10;
    }
    
    .ig-es-form-list-selection tbody tr:nth-child(11) {
        order: 11;
    }
    
    .ig-es-form-list-selection tbody tr:nth-child(12) {
        order: 12;
    }

    The above CSS is based on the existing display order. If it changes, then you might need to change the above CSS accordingly.

    You can put the above CSS in the Customizer’s settings(Appearance > Customize > Additional CSS).

    Hope this helps you. Let us know if you have any further queries.

    Thank You.

    Plugin Contributor kishanranawat

    (@kishanranawat)

    Hello @mahadavid,

    We haven’t heard from you in a while.

    We hope our previous reply was helpful in resolving your queries.

    I am closing this ticket for now. Feel free to reopen it in case if you are still having any queries.

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change list display order’ is closed to new replies.