Forked from NiklasHogefjord/wc-klarna-disable-autofocus.php
Created
October 20, 2017 08:22
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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