• Hello,

    I believe we need some assistance on two items:

    1. I’d like to HIDE the entire Price Column on the Order Table on all of the emails as I’m setting up a website where basically all of the content if free. So we don’t need to show the Pricing Column on any order tables. Would you perhaps know the best way to do this. I do know that I can input CSS in the Custom Styles section. But when viewing the Price column, I’m not seeing any classes that separate any of the other information within this table. Please advise and any help is much appreciated. So you know, here’s the screenshot of the area we are trying to hide: https://prnt.sc/Q16lYMiCK_6f
    2. We’d also like to relabeld the “Order number” text in this area to “Course Registration Number”: https://prnt.sc/sHKtnQSLF_r7
    3. And last. We’d like to relabel the “Order date” to “Course Registration Date” in this area: https://prnt.sc/3Q1ciZqysN6u

    Any and all assistance is greatly appreciate.

    Thank you!

Viewing 1 replies (of 1 total)
  • Hey,

    1. The core emails don’t have classes specific to those columns, best would be to override the templates and remove the price-output. You can do really hacky CSS like this:
    table.td td.td:last-child, table.td th.td:last-child {
        display: none !important;
    }

    But I don’t suggest it.

    2. Overriding the templates would be best for this, you can also use a plugin like : https://www.ads-software.com/plugins/say-what/

    3. ^ Same.

    All the best,

    Ben

Viewing 1 replies (of 1 total)
  • The topic ‘Hiding Price Column On Order Table’ is closed to new replies.