Announcement

Collapse
No announcement yet.

Coupon Successfully Applied Message

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Coupon Successfully Applied Message

    I want to add a message to inform shoppers that their coupon was successfully applied on the BASK and OSEL screens. Is there and action that can be checked for to determine if a coupon is accepted? There does not seem to be a default message for that.
    Highly caffeinated
    http://www.coffeehouseexpress.com

    #2
    Jim, depending on the theme you are using, I think it should come up automatically after applying the coupon (message with green background).
    Andreas Toman
    PCINET, LLC

    Miva Merchant Design, Development, Integration & Support
    We built over 200 Miva Merchant stores!
    Miva shopping cart design & integration service and see our Portfolio!


    e-mail: [email protected]
    web: www.pcinet.com
    LinkedIn: Andreas Toman
    phone: (786) 250-2056 (Miami, FL)

    Comment


      #3
      Hi Andreas, That's what I thought, I'm using Levels. I get the error messages when the code is not valid, but not a success message when the code is good.
      Highly caffeinated
      http://www.coffeehouseexpress.com

      Comment


        #4
        tried another store based on levels and no message, just displaying the coupon and a remove icon beside it. I think it shouldn't be too hard to add a message but not out of the box as it looks.
        Andreas Toman
        PCINET, LLC

        Miva Merchant Design, Development, Integration & Support
        We built over 200 Miva Merchant stores!
        Miva shopping cart design & integration service and see our Portfolio!


        e-mail: [email protected]
        web: www.pcinet.com
        LinkedIn: Andreas Toman
        phone: (786) 250-2056 (Miami, FL)

        Comment


          #5
          This question was answered here: http://www.miva.com/forums/forum/onl...y-been-applied

          Comment


            #6
            There is no native trigger for a success message. That being said, you can add the following code to the ReadyTheme -> Content Sections -> Messages item to produce what you are looking for.
            Code:
            <mvt:comment><!-- Coupon Success Message --></mvt:comment>
            <mvt:if expr="g.Action EQ 'ACPN' AND ISNULL l.settings:messages:error_message_count">
                <p class="message message-success">Your Promo Code Has Been Applied</p>
            </mvt:if>
            <mvt:if expr="g.Action EQ 'RCPN' AND ISNULL l.settings:messages:error_message_count">
                <p class="message message-info">Your Promo Code Has Been Removed</p>
            </mvt:if>
            Matt Zimmermann

            Miva Web Developer
            Alchemy Web Development
            https://www.alchemywebdev.com
            Site Development - Maintenance - Consultation

            Miva Certified Developer
            Miva Professional Developer

            https://www.dev4web.net | Twitter

            Comment


              #7
              Perfect Matt! Thank you so much!
              Highly caffeinated
              http://www.coffeehouseexpress.com

              Comment

              Working...
              X