• Looks good, but I have a few ideas that I would like to see:

    Variations: Can all the variations be visible in a grid with a quantity box for each? Could this be done with two such as colour and size?
    Add All Button: Being able to select multiple items and variations and click one button to add them all.
    Column Sizes: It would be nice to be able to change the width of each column.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • HorsyNox

    (@horsynox)

    seank123, you can change the width of columns in css.

    .quick-order th:first-child {
        text-align: center;
        width: 10%;
    }
    .quick-order th:nth-child(2) {
        text-align: center;
        width: 40%;
    }
    .quick-order th:nth-child(3) {
        text-align: center;
        width: 20%;
    }
    .quick-order th:nth-child(4) {
        text-align: center;
        width: 30%;
    }

    You can make it auto, for example.

    Thread Starter seank123

    (@seank123)

    Thanks – that works!

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