Product On Sale / Sale Prices

Under Consideration

Comments

4 comments

  • Avatar
    Jeremy Martin

    This is so needed. I cannot believe an online website builder doesn't have this feature.

    Comment actions Permalink
  • Avatar
    Andy Nolan

    Yes please. This would be great.  We'd love to be able to offer our stores ability to put items on promotional pricing. Styling could be defined on a per website basis.  I'd like to be able to do a strike through price such as 'Was £XX.XX NOW £XX.XX' (with formatting options). Additionally, with a time-defined ability to schedule promo prices.  

    Comment actions Permalink
  • Avatar
    KPOPE SALES

    Customers are so visual that this seems a given to incorporate. It just a great way to drive sales faster with a visual "ON SALE" blurb like most webstores.

    Please, please consider to add this soon.

    Comment actions Permalink
  • Avatar
    Spencer S

    I assume after 4 years this is never going to get added, it is possible with html in the product description and CSS to re-position it. You can use this below and change your "was" and "save %" 

    <style>
    .dn-price-container::before {
      content: 'Was £9.99';
      display: block;
      font-family: inherit;
      font-size: 24px;
      font-weight: 700;
      color: #333;
      text-decoration: line-through;
      margin-bottom: 5px;
    }

    .dn-price-container::after {
      content: 'SAVE 50%';
      display: inline-block;
      background-color: #cb2031;
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 700;
      padding: 4px 12px;
      margin-left: 10px;
      border-radius: 4px;
      position: relative;
      top: -2px;
    }

    .dn-unit-price .dn-price-container::before,
    .dn-unit-price .dn-price-container::after {
      display: none !important;
    }
    </style>

     

    Comment actions Permalink

Please sign in to leave a comment.