Skip to content

Instantly share code, notes, and snippets.

@hedqvist
Created December 2, 2019 16:59
Show Gist options
  • Select an option

  • Save hedqvist/52d373445093422a3625fad8e730343d to your computer and use it in GitHub Desktop.

Select an option

Save hedqvist/52d373445093422a3625fad8e730343d to your computer and use it in GitHub Desktop.
Fortnox - Set Customer type (GUEST)
<?php
/**
* @snippet WooCommerce - Fortnox plugin by Redlight Media - (GUEST USERS) Set customer Type to Private
* @author Redlight Media AB / Christopher Hedqvist
* @compatible WooCommerce 3.4.2
*/
function redlight_fortnox_guest_customer_type( $customer, $order_id ) {
$customer['Customer']['Type'] = 'PRIVATE';
return $customer;
}
add_filter( 'obj_fortnox_guest_customer_data', 'redlight_fortnox_guest_customer_type', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment