• Resolved winzyatan

    (@winzyatan)


    Hi,

    Thanks for your nice plugin. However, in “My account” page, coupons are displayed vertically. It doesn’t look very nice.
    Can I display the coupons horizontally (two coupons in a row)?

    Screenshot

    • This topic was modified 5 years, 12 months ago by winzyatan.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter winzyatan

    (@winzyatan)

    In addition, is it possible to remove the coupon applied automatically in “Checkout” page?

    Plugin Author WebToffee

    (@webtoffee)

    Hi @winzyatan,

    To show the coupon 2 in a row, please add below code snippet to your active theme’s CSS.

    @media only screen and (min-width: 480px) {
       .wt-mycoupons .wt-single-coupon:nth-of-type(2n) {
       margin-right: 0;
    }
    .wt-mycoupons .wt-single-coupon {
       display: inline-flex;
       width: calc(50% - 30px);
    }
    }

    You can turn off the automatic apply from coupon settings. Go to coupon edit page and under the general tab you can turn automatic apply option.

    Thread Starter winzyatan

    (@winzyatan)

    Thank you very much!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Display coupons horizontally’ is closed to new replies.