Guest User

Untitled

a guest
Oct 24th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. <h4 style="margin-bottom: 0;">Want to add all to the basket?</h4>
  2. <p style="margin-bottom: 20px;">Just add quantity for each item and click the ADD button... </p>
  3. <form method="post" id="multiple-add" action="/mm5/merchant.mvc?Screen=BASK">
  4. <div class="multi-add-container" style="margin-bottom: 20px;">
  5. <mvt:foreach iterator="product" array="category_listing:products">
  6. <div class="multi-add-item" style="display: inline-block; margin-right: 20px; margin-bottom: 30px; max-width: 30%; min-height: 200px;">
  7. <img src="&mvt:product:src;" alt="&mvte:product:name;">
  8. <div class="product-attributes">
  9. <mvt:item name="product_attributes" param="product:id" />
  10. </div>
  11. <input type="hidden" name="Product_Code" value="&mvt:product:code;" />
  12. <div class="ctgy-product-bottom">
  13. <p class="category-product-name">
  14. <a data-mm-linktype="product-list-link" href="&mvte:product:link;">&mvt:product:name;</a>
  15. </p>
  16. <p>
  17. <mvt:if expr="l.settings:product:base_price GT l.settings:product:price">
  18. <span class="category-product-retail-price">&mvt:product:formatted_base_price;</span>
  19. <span class="category-product-sale-price">&mvt:product:formatted_price;</span>
  20. <mvt:else>
  21. <span class="category-product-price">&mvt:product:formatted_price;</span>
  22. </mvt:if>
  23. </p>
  24. </div>
  25. <input type="text" name="Quantity" size="4" value="1" style="min-width: 50px; max-width: 60px;" />
  26. </div>
  27. </mvt:foreach>
  28. </div>
  29. <input type="submit" value="ADD" style="min-width: 100px;" class="button bg-orange">
  30. </form>
Add Comment
Please, Sign In to add comment