Created
June 19, 2015 06:57
-
-
Save woogist/a857302a4654cf4aee6e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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