Skip to content

Instantly share code, notes, and snippets.

@vanbo
Created January 23, 2020 16:18
Show Gist options
  • Select an option

  • Save vanbo/fcf2fc7174e12e19c81100014dcc0537 to your computer and use it in GitHub Desktop.

Select an option

Save vanbo/fcf2fc7174e12e19c81100014dcc0537 to your computer and use it in GitHub Desktop.
WC Epay.bg OneTouch - Filter Setup Payment Request
/**
* Place the code in your theme/functions.php file
*/
add_filter( 'wc_epay_one_touch_payment_setup_params', 'prefix_epaytouch_setup_params', 10, 4 );
function prefix_epaytouch_setup_params( $params, $device_id, $token, $account_payment_class ) {
if ( isset( $params['EXP'] ) ) {
// remove the expiration time
unset( $params['EXP'] );
}
return $params;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment