Skip to content

Commit

Permalink
Chase: update BIN snippet to add details on which platform typically …
Browse files Browse the repository at this point in the history
…supports which BIN
  • Loading branch information
Tamara Zuk committed Nov 20, 2018
1 parent 6f0d14f commit f745623
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion woocommerce-gateway-chase-paymentech/filter-bin-value.php
Expand Up @@ -3,10 +3,12 @@
/**
* Changes the Chase Paymentech BIN to 000001; default is 000002.
*
* Tandem platform typically uses BIN 000002 while Stratus platform uses BIN 000001.
*
* @param string $bin the BIN value; default is 000002
* @return string updated BIN
*/
function sv_wc_chase_paymentech_bin( $bin ) {
return '000001';
}
add_filter( 'wc_payment_gateway_chase_paymentech_request_bin', 'sv_wc_chase_paymentech_bin' );
add_filter( 'wc_payment_gateway_chase_paymentech_request_bin', 'sv_wc_chase_paymentech_bin' );

0 comments on commit f745623

Please sign in to comment.