Skip to content

Instantly share code, notes, and snippets.

@xlplugins
Created June 23, 2023 14:24
Show Gist options
  • Save xlplugins/9576e2dbb6143cc297ac36d251611ee4 to your computer and use it in GitHub Desktop.
Save xlplugins/9576e2dbb6143cc297ac36d251611ee4 to your computer and use it in GitHub Desktop.
Trigger Update order review after page load
add_action( 'wfacp_internal_css', function () { ?>
<script>
window.addEventListener('bwf_checkout_load', function () {
(function ($) {
setTimeout(function(){
$(document.body).trigger('update_checkout');
},1000);
})(jQuery);
});
</script>
<?php } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment