Skip to content

Instantly share code, notes, and snippets.

View BusinessBloomer's full-sized avatar

Rodolfo Melogli BusinessBloomer

View GitHub Profile
@BusinessBloomer
BusinessBloomer / redirect.php
Last active February 29, 2024 13:41
Redirect to cart if last item is removed from checkout
// REDIRECT TO SHOP ON EMPTY CHECKOUT
add_action( 'wp_footer', function() {
if ( is_checkout() ) {
$redirect_page_id = get_option( 'bbcpqcp_redirect', wc_get_page_id( 'shop' ) ); // or 'cart'
$redirect_page = get_permalink( $redirect_page_id );
?>
<script>
jQuery( function($){
jQuery(document.body).on( 'updated_checkout', function(event) {