Skip to content

Instantly share code, notes, and snippets.

View breadadams's full-sized avatar

Brad Adams breadadams

View GitHub Profile
@breadadams
breadadams / wc-klarna-disable-autofocus.php
Created October 20, 2017 08:22 — forked from NiklasHogefjord/wc-klarna-disable-autofocus.php
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');