Pricing Model options "$--/package"

Is there any way you can add “Package” to the Pricing Model - Per Unit choices (shown below)?

I really like the layout & feel as though the added clarity (that the price is “per package”) would be very beneficial to our over all pricing table & site.

Pricing Model(so this would say $150 / package vs saying $150 / item)

2 Likes

Hi there, @Taybraham :waving_hand:

This code should do the trick:

.es-price-postfix {
    visibility: hidden;
    position: relative;
}

.es-price-postfix::before {
    content: "/ Package";
    visibility: visible;
    position: absolute;
    left: 0;
}

Please add it to the Custom CSS field on the Appearance tab and let me know if it worked :slightly_smiling_face:

2 Likes