Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save NiklasHogefjord/d04f5a0d80182b65adbb to your computer and use it in GitHub Desktop.
Save NiklasHogefjord/d04f5a0d80182b65adbb to your computer and use it in GitHub Desktop.
SecureTrading for WooCommerce - Filter the billingtelephonetype
/**
* WooCommerce - SecureTrading payment gateway
* Filter the billingtelephonetype sent to SecureTrading
*
**/
add_filter('securetrading_billing_phone_type', 'my_securetrading_billing_phone_type');
function my_securetrading_billing_phone_type( ) {
// Available Phone Types are H (Home), W (Work), M (Mobile)
return 'H';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment