Advertisement
Guest User

Untitled

a guest
Sep 11th, 2011
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.21 KB | None | 0 0
  1. <?php if (shopp('cart','hasitems')): ?>
  2. <form id="cart" action="<?php shopp('cart','url'); ?>" method="post">
  3. <big id="cart-top">
  4. <a href="<?php shopp('cart','referrer'); ?>">&laquo; Continue Shopping</a>
  5. <a href="<?php shopp('checkout','url'); ?>" class="right">Proceed to Checkout &raquo;</a>
  6. </big>
  7.  
  8. <?php shopp('cart','function'); ?>
  9. <table class="cart">
  10. <tr>
  11. <th scope="col" class="item">Cart Items</th>
  12. <th scope="col">Quantity</th>
  13. <th scope="col" class="money">Item Price</th>
  14. <th scope="col" class="money">Item Total</th>
  15. </tr>
  16.  
  17. <?php while(shopp('cart','items')): ?>
  18. <tr>
  19. <td>
  20. <a href="<?php shopp('cartitem','url'); ?>"><?php shopp('cartitem','name'); ?></a>
  21. <?php shopp('cartitem','options','show=selected'); ?>
  22. <?php shopp('cartitem','addons-list'); ?>
  23. <?php shopp('cartitem','inputs-list'); ?>
  24. </td>
  25. <td><?php shopp('cartitem','quantity','input=text'); ?>
  26. <?php shopp('cartitem','remove','input=button'); ?></td>
  27. <td class="money"><?php shopp('cartitem','unitprice'); ?></td>
  28. <td class="money"><?php shopp('cartitem','total'); ?></td>
  29. </tr>
  30. <?php endwhile; ?>
  31.  
  32. <?php while(shopp('cart','promos')): ?>
  33. <tr><td colspan="4" class="money"><?php shopp('cart','promo-name'); ?><strong><?php shopp('cart','promo-discount',array('before' => '&nbsp;&mdash;&nbsp;')); ?></strong></td></tr>
  34. <?php endwhile; ?>
  35.  
  36. <tr class="totals">
  37. <td colspan="2" rowspan="4">
  38. <p>All products will be sent out via Fedex Ground and<br />are expected to ship within 3-5 business days.</p>
  39. <p>Ordering more than 3 items? Call us to discuss discounts.</p>
  40. </td>
  41. <th scope="row">Subtotal</th>
  42. <td class="money"><?php shopp('cart','subtotal'); ?></td>
  43. </tr>
  44. <?php if (shopp('cart','hasdiscount')): ?>
  45. <tr class="totals">
  46. <th scope="row">Discount</th>
  47. <td class="money">-<?php shopp('cart','discount'); ?></td>
  48. </tr>
  49. <?php endif; ?>
  50. <?php if (shopp('cart','needs-shipped')): ?>
  51. <tr class="totals">
  52. <th scope="row"><?php shopp('cart','shipping','label=Shipping'); ?></th>
  53. <td class="money"><?php shopp('cart','shipping'); ?></td>
  54. </tr>
  55. <?php endif; ?>
  56. <tr class="totals">
  57. <th scope="row"><?php shopp('cart','tax','label=Tax'); ?></th>
  58. <td class="money"><?php shopp('cart','tax'); ?></td>
  59. </tr>
  60. <tr class="totals total">
  61. <th scope="row">Total</th>
  62. <td class="money"><?php shopp('cart','total'); ?></td>
  63. </tr>
  64. </table>
  65.  
  66. <div id="cart-inputs">
  67. <h6>Enter Your Zip Code To Estimate Shipping &amp; Taxes:</h6>
  68. <?php shopp('cart','shipping-estimates','postcode=true'); ?>
  69. <?php shopp('cart','update-button','value=Preview Shipping and Taxes'); ?>
  70. <h6>Got a coupon code? Enter it here:</h6>
  71. <?php shopp('cart','promo-code','class=promo-input&value=Apply Coupon&title=Enter Any Discount Codes Here'); ?>
  72. </div>
  73.  
  74. <big id="cart-bottom">
  75. <a href="http://www.bandstorage.com" class="left">&laquo; Continue Shopping</a>
  76. <a href="<?php shopp('checkout','url'); ?>" class="right">Proceed to Checkout &raquo;</a>
  77. </big>
  78.  
  79. </form>
  80.  
  81. <?php else: ?>
  82. <p class="warning">There are currently no items in your shopping cart.</p>
  83. <p><a href="http://www.bandstorage.com" class="left">&laquo; Continue Shopping</a></p>
  84. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement