Skip to content

Instantly share code, notes, and snippets.

@szlegradi
Last active May 20, 2020 12:16
Show Gist options
  • Save szlegradi/a8562ed655e8daf610db2b75c8650d70 to your computer and use it in GitHub Desktop.
Save szlegradi/a8562ed655e8daf610db2b75c8650d70 to your computer and use it in GitHub Desktop.
WooCommerce kosár átirányítása az Üzlet vagy Pénztár oldalra
<?php
add_action( 'template_redirect', 'redirect_cart_to_checkout' );
function redirect_cart_to_checkout() {
if ( is_cart() ) {
if ( empty( WC()->cart->get_cart_contents() ) ) {
wp_redirect( wc_get_page_permalink( 'shop' ) );
} else {
wp_redirect( wc_get_page_permalink( 'checkout' ) );
}
die();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment