Skip to content

Instantly share code, notes, and snippets.

@woogist
Created June 19, 2015 06:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save woogist/a857302a4654cf4aee6e to your computer and use it in GitHub Desktop.
Save woogist/a857302a4654cf4aee6e to your computer and use it in GitHub Desktop.
/**
* Output the proceed to checkout button.
*
* @subpackage Cart
*/
function woocommerce_button_proceed_to_checkout() {
$checkout_url = WC()->cart->get_checkout_url();
?>
<a href="<?php echo $checkout_url; ?>" class="checkout-button button alt wc-forward"><?php _e( 'Proceed to Checkout', 'woocommerce' ); ?></a>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment