woocommerce/templates/cart/empty.php

18 lines
458 B
PHP
Raw Normal View History

<?php
/**
2012-08-14 18:05:45 +00:00
* Empty cart page
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 1.6.4
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
?>
2012-10-16 09:45:33 +00:00
<p><?php _e( 'Your cart is currently empty.', 'woocommerce' ) ?></p>
<?php do_action('woocommerce_cart_is_empty'); ?>
2012-10-16 09:45:33 +00:00
<p><a class="button" href="<?php echo get_permalink(woocommerce_get_page_id('shop')); ?>"><?php _e( '&larr; Return To Shop', 'woocommerce' ) ?></a></p>