Announcement

Collapse
No announcement yet.

Miva 9.0003 Coupon Module Questions

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

    Miva 9.0003 Coupon Module Questions

    We are currently using Sebenza's Ultimate Coupons and are investigating switching over to the Miva built in module.

    One of the neat things about reporting in Sebenza is that it gives you the coupon value, and order value for each order in a user definable time period. Then it total each of those fields at the end of the report.

    I don't see a way to get this type of reporting in the current Miva coupon module and thought someone could point me in the right direction.

    #2
    Re: Miva 9.0003 Coupon Module Questions

    We will be adding some more detailed reports like this at some point, but for now this can be done using a custom batch report. You would use the order processing section to select the data range, and the report can be customized to output any coupon data in any format you want/need.

    It would take a few hours to setup initially, but once you have it running the report would be very simple.
    Brennan Heyde
    VP Product
    Miva, Inc.
    [email protected]
    https://www.miva.com

    Comment


      #3
      Re: Miva 9.0003 Coupon Module Questions

      Where can I find the instructions for integrating the coupons into a Legacy CSSUI page template?
      Ray Yates
      "If I have seen further, it is by standing on the shoulders of giants."
      --- Sir Isaac Newton

      Comment


        #4
        Re: Miva 9.0003 Coupon Module Questions

        http://www.miva.com/template-changes

        They are located in the Version 9 page template changes link.
        Brennan Heyde
        VP Product
        Miva, Inc.
        [email protected]
        https://www.miva.com

        Comment


          #5
          Re: Miva 9.0003 Coupon Module Questions

          Brennan

          I should have mentioned that was the first place I looked.

          There is nothing showing how to integrate coupons into the BASK page template that I can find.
          Ray Yates
          "If I have seen further, it is by standing on the shoulders of giants."
          --- Sir Isaac Newton

          Comment


            #6
            Re: Miva 9.0003 Coupon Module Questions

            Sorry, I'll make sure we post it there.

            You can manually "turn on" coupons on the basket page but that requires you to be in point and click mode and when you hit update it will revert your page template to default, but it will add the form code you need to the page.

            The better way is to simply add the coupon form yourself. It can appear on any page. It is just a form with its own action. Keep in mind that it can't be within another form. Also, if you use it on a page like OPAY, there may be hidden inputs you need to add to the form in order to pass through the correct values (ShippingMethod for example)

            Here is the form code:

            http://extranet.miva.com/forums/show...200#post425200

            Also, keep in mind that any page which as the coupon box, also needs the messages item assigned and the following code:

            Code:
            <mvt:if expr="l.settings:messages:error_message_count">
                <div class="alert alert-danger">
                    <mvt:foreach iterator="error" array="messages:error_messages">
                        &mvt:error;
                    </mvt:foreach>
                </div>
            </mvt:if>
            <mvt:if expr="l.settings:messages:information_message_count">
                <div class="alert alert-info">
                    <mvt:foreach iterator="message" array="messages:information_messages">
                        &mvt:message;
                    </mvt:foreach>
                </div>
            </mvt:if>

            For MMUI stores the code you need is:

            Code:
            <mvt:item name="messages" />
            Last edited by Brennan; 06-25-15, 09:04 AM.
            Brennan Heyde
            VP Product
            Miva, Inc.
            [email protected]
            https://www.miva.com

            Comment


              #7
              Re: Miva 9.0003 Coupon Module Questions

              Thanks Brennan!
              Ray Yates
              "If I have seen further, it is by standing on the shoulders of giants."
              --- Sir Isaac Newton

              Comment

              Working...
              X