Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save breadadams/e983dbd607054c6622a43967c92f696c to your computer and use it in GitHub Desktop.
Save breadadams/e983dbd607054c6622a43967c92f696c to your computer and use it in GitHub Desktop.
Klarna for WooCommerce - Filter Create order object sent to Klarna for disabling autofocus of email field
/**
* WooCommerce - Klarna payment gateway
* Filter Create order for disabling autofocus of email field.
**/
// New order ($create)
add_action('kco_create_order', 'my_kco_create_order');
function my_kco_create_order( $create ) {
$create['gui']['options'] = array('disable_autofocus');
return $create;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment