Advertisement
Guest User

Untitled

a guest
Jan 31st, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. add_action( 'woocommerce_proceed_to_checkout', 'insert_empty_cart_button' );
  3. function insert_empty_cart_button() {
  4. // Echo our Empty Cart button
  5. echo '<input type="submit" class="button" name="empty_cart" value="Empty Cart" />';
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement