sidecart.php 716 B

12345678910111213141516
  1. <div id="shopp-cart-ajax">
  2. <?php if ( shopp( 'cart.hasitems' ) ) : ?>
  3. <p class="status">
  4. <span id="shopp-sidecart-items"><?php shopp( 'cart.totalitems' ); ?></span> <strong><?php _e( 'Items', 'Shopp' ); ?></strong><br />
  5. <span id="shopp-sidecart-total" class="money"><?php shopp( 'cart.total' ); ?></span> <strong><?php _e( 'Total', 'Shopp' ); ?></strong>
  6. </p>
  7. <ul>
  8. <li><a href="<?php shopp( 'cart.url' ); ?>"><?php _e( 'Edit shopping cart', 'Shopp' ); ?></a></li>
  9. <li><a href="<?php shopp( 'checkout.url' ); ?>"><?php _e( 'Proceed to Checkout', 'Shopp' ); ?></a></li>
  10. </ul>
  11. <?php else : ?>
  12. <p class="status notice"><?php _e( 'Your cart is empty.', 'Shopp' ); ?></p>
  13. <?php endif; ?>
  14. </div>