• Resolved avabusiness

    (@avabusiness)


    Is there a way to remove all pricing information in the emails without editing theme templates? Site runs on a sort of inquiry system where prices are provided when order received. The entire pricing column plus sub total and total lines need to be removed.

    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Gilbert Hernandez

    (@ghernkadence)

    Hello

    Unfortunately, there isn’t a way to remove the prices using settings. You could create a template to show the order without the prices.

    However, a simpler method may be to use CSS. For example, try the following CSS to the custom styles and let us know if it works for you.

    thead tr th:nth-child(3) {
        display: none;
        
    }
    tbody tr td:nth-child(3) {
        display:none;
    }
    tfoot {
        display:none;
    }
    Thread Starter avabusiness

    (@avabusiness)

    Thank you so much for your quick reply!

    I tried the CSS in my additional CSS for the theme and it didn’t work. Then I reread your email and put it instead in the custom CSS for the email builder and it worked like a charm! Appreciate your assistance.

    Plugin Support Gilbert Hernandez

    (@ghernkadence)

    Hello @avabusiness,

    Great! I’m glad the CSS solution worked for you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove all pricing information’ is closed to new replies.