woocommerce/shortcodes/shortcode-checkout.php

31 lines
968 B
PHP
Raw Normal View History

2011-08-10 17:11:11 +00:00
<?php
/**
* Checkout Shortcode
*
* Used on the checkout page, the checkout shortcode displays the checkout process.
*
* @package WooCommerce
* @category Shortcode
* @author WooThemes
*/
function get_woocommerce_checkout( $atts ) {
global $woocommerce;
return $woocommerce->shortcode_wrapper('woocommerce_checkout', $atts);
2011-08-10 17:11:11 +00:00
}
function woocommerce_checkout( $atts ) {
2012-01-12 00:54:45 +00:00
global $woocommerce;
2011-08-10 17:11:11 +00:00
2012-02-07 12:09:23 +00:00
woocommerce_nocache();
2012-01-12 00:54:45 +00:00
if (sizeof($woocommerce->cart->get_cart())==0) return;
2012-01-12 00:54:45 +00:00
$non_js_checkout = (isset($_POST['woocommerce_checkout_update_totals']) && $_POST['woocommerce_checkout_update_totals']) ? true : false;
2011-08-10 17:11:11 +00:00
do_action('woocommerce_check_cart_items');
2011-08-10 17:11:11 +00:00
2012-01-05 11:31:22 +00:00
if ( $woocommerce->error_count()==0 && $non_js_checkout) $woocommerce->add_message( __('The order totals have been updated. Please confirm your order by pressing the Place Order button at the bottom of the page.', 'woocommerce') );
2011-08-10 17:11:11 +00:00
2012-02-03 16:17:35 +00:00
woocommerce_get_template('checkout/form-checkout.php');
2011-08-10 17:11:11 +00:00
}