• Hi and congrats on the great plugin!

    I want to remove the Quantity column from email-order-details.php, I tried to edit the template, I removed the column but the table isn’t showing at 100% width. Can you please help me remove the Quantity column from the order details table?

    I would also like to remove the addresses table from the email. Is that possible?

    Thanks in advance!

Viewing 1 replies (of 1 total)
  • hannah

    (@hannahritner)

    Hey Konna,
    Thanks for reaching out! Sorry for the delay. Try using this css to remove the quantity:

    table.td thead tr .td:nth-child(2), table.td tbody tr .td:nth-child(2) {
        width: 0px;
        display: block;
        overflow: hidden;
        padding: 0 !important;
    }

    And this the address:

    #addresses .address-container {
      display: none;
    }

    You can paste that into the custom css area within the email customizer.
    Hope it helps!

    Best,
    Hannah

Viewing 1 replies (of 1 total)

The topic ‘Remove Quantity and Addresses’ is closed to new replies.