Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // bypass the cart page
- // code goes in functions.php for your child theme
- add_filter ( 'add_to_cart_redirect', 'wc_redirect_to_checkout' );
- function wc_redirect_to_checkout() {
- return WC()->cart->get_checkout_url();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement