Announcement

Collapse
No announcement yet.

Order History - Order Status and Shipments

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

    Order History - Order Status and Shipments

    I'm trying to figure out how to get the Backorder estimated back in store message to display I'm also trying to figure out why the &mvt:shipment:tracknum; isn't working on the Order History List page.

    The store is a Default CSSUI Framework

    Also, is there a template for the Backordered email somewhere? This site doesn't seem to have one. Can I just copy one?
    Leslie Kirk
    Miva Certified Developer
    Miva Merchant Specialist since 1997
    Previously of Webs Your Way
    (aka Leslie Nord leslienord)

    Email me: [email protected]
    www.lesliekirk.com

    Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr

    #2
    Hello Leslie

    There is a backorder notice template EMAIL_BACKORDER_NOTICE. Is this the template you are missing?
    Are you also referring to the Low Stock Message "Out of Stock - Will Be Backordered"

    This message will display if "Track Low Stock Level" checkbox is checked in the Global Inventory tab.
    You should be able to see it here http://hmendenhall.mivamerchantdev.com/product/box.html
    Happie Mendenhall
    Support Technician
    Miva, Inc.

    Comment


      #3
      Originally posted by hmendenhall View Post
      Hello Leslie

      There is a backorder notice template EMAIL_BACKORDER_NOTICE. Is this the template you are missing?
      Are you also referring to the Low Stock Message "Out of Stock - Will Be Backordered"

      This message will display if "Track Low Stock Level" checkbox is checked in the Global Inventory tab.
      You should be able to see it here http://hmendenhall.mivamerchantdev.com/product/box.html
      It was the backorder notice template EMAIL_BACKORDER_NOTICE. I found it.

      Now I need to figure out how to get the backorder date for backorders and the shipment tracking number for orders shipped to display on the Order History page.
      Leslie Kirk
      Miva Certified Developer
      Miva Merchant Specialist since 1997
      Previously of Webs Your Way
      (aka Leslie Nord leslienord)

      Email me: [email protected]
      www.lesliekirk.com

      Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr

      Comment


        #4
        Here's what works for me to show shipment tracking numbers on my order history page:

        Code:
                <mvt:foreach iterator="order" array="orders">
                    <mvt:if expr = "l.pos1 MOD 2">
                        <tr class="alt_row">
                    <mvt:else>
                        <tr>
                    </mvt:if>
                        <td class="order-date">&mvt:order:date_formatted;</td>
                        <td class="order-invoice">&mvt:order:id;</td>
                        <td class="order-status">&mvt:order:order_status;</td>
                        <td class="order-tracking">
                            <mvt:if expr="ISNULL l.settings:order:shipments">
                                N/A
                            <mvt:else>
                                <mvt:foreach iterator="shipment" array="order:shipments">
                                    <mvt:if expr="ISNULL l.settings:shipment:tracknum">
                                        N/A<br />
                                    <mvt:else>
                                        <a target="_blank" href="&mvt:shipment:tracklink_raw;">&mvt:shipment:tracknum;</a><br />
                                    </mvt:if>
                                </mvt:foreach>
                            </mvt:if>
                        </td>
                        <td class="order-view"><a href="&mvt:global:secure_sessionurl;Screen=ORDS&amp;Store_Code=&mvta:global:Store_Code;&amp;SortBy=&mvta:global:SortBy;&amp;Offset=&mvta:global:Offset;&amp;Order_ID=&mvt:order:id;&amp;Order_BillEmail=&mvta:global:Order_BillEmail;&amp;Order_BillZip=&mvta:global:Order_BillZip;">View order</a></td>
                        </tr>
                </mvt:foreach>
        Todd Gibson
        Oliver + S | Sewing Patterns for Kids and the Whole Family

        Comment

        Working...
        X