I have a problem with a woocommerce
site I have.
The problem is that I need to refresh the checkout page every 20
seconds when I hit the place order button.
The main reason is that I have a plugin that informs in real time the user for the order. Also it process the order to be from "onhold" to "completed" automatically.
But for some reason in iPad
-iPhones
it isn't refreshing, so is there any possible solution to refresh the checkout page automatically?
This is the code I use to update the checkout status automatically:
/* Reset status of new orders from "on-hold" to "complete" */
add_action( 'woocommerce_thankyou', 'custom_woocommerce_auto_complete_order' );
function custom_woocommerce_auto_complete_order( $order_id ) {
global $woocommerce;
if ( !$order_id )
return;
$order = new WC_Order( $order_id );
$order->update_status( 'completed' );
}
Thanks all for your time :)
hi put below code into function.php
and put this shortcode [reloadpage] into checkout page. this will reload page after every 20sec.
hope this will work for you