upsell products in bask page

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Islandrose
    Mini Mivite

    • Aug 2009
    • 22

    #1

    upsell products in bask page

    need help on my basket page, i want my upsell products to have an editable quantity, see image below the last item the quantity doesnt have text field where you can add or lessen quantity. thanks in advance

    irose.jpg
  • Brennan
    Super Moderator









    • Jun 2009
    • 3481

    #2
    Re: upsell products in bask page

    This can be edited on the BASK page under the basket content tab.

    Look for this code:

    Code:
    <mvt:if expr="l.settings:item:upsold">
        &mvt:item:quantity;
    <mvt:else>
        <form method="post" action="&mvt:global:sessionurl;Screen=BASK" class="form-inline text-center clearfix" role="form">
            <input type="hidden" name="Action" value="QNTY" />
            <input type="hidden" name="Store_Code" value="&mvte:global:Store_Code;" />
            <input type="hidden" name="Basket_Line" value="&mvte:item:line_id;" />
            <input type="hidden" name="Old_Screen" value="BASK" />
            <input type="hidden" name="Offset" value="&mvte:global:Offset;" />
            <input type="hidden" name="AllOffset" value="&mvte:global:AllOffset;" />
            <input type="hidden" name="CatListingOffset" value="&mvte:global:CatListingOffset;" />
            <input type="hidden" name="RelatedOffset" value="&mvte:global:RelatedOffset;" />
            <input type="hidden" name="SearchOffset" value="&mvte:global:SearchOffset;" />
            <div class="col-md-8 col-sm-8">
                <div class="form-group">
                    <input type="text" name="Quantity" value="&mvt:item:quantity;" class="form-control text-center" />
                </div>
            </div>
            <div class="col-md-4 col-sm-4">
                <mvt:item name="buttons" param="Update" />
            </div>
        </form>
    </mvt:if>
    It is saying if the item is an upsell item, just display the quantity. If not, display the input to allow the quantity to be editable. Just remove the if else statement and leave the form and it will display the quantity box for all products
    Last edited by Brennan; 09-04-14, 07:28 AM.
    Brennan Heyde
    VP Product
    Miva, Inc.
    [email protected]
    https://www.miva.com

    Comment

    • Islandrose
      Mini Mivite

      • Aug 2009
      • 22

      #3
      Re: upsell products in bask page

      Thanks Brennan. Got it!

      Comment

      Working...
      X