תשלום מאובטח – PCI DSS Level 1
jQuery( function($) {
// Remove the original WC CC Form
$("#wc-gobitpaymentgateway-cc-form").remove();
var WCGobitGatwayPaymentsDropdown = {
init: function(){
let self = this;
self.handle_payments_dropdown( 'hide' );
},
handle_payments_dropdown : function( showHide ){
if( showHide === 'show' ) {
$("#tranzila-choose-number-of-payments").show();
$("#wc-gobitpaymentgateway-new-payment-method").prop("checked", false);
}
else {
$("#tranzila-choose-number-of-payments").hide();
if( $("#tranzila-choose-number-of-payments select").length === 1 ) {
$("#tranzila-choose-number-of-payments select option:nth-child(1)").prop("selected", true);
}
}
}
};
WCGobitGatwayPaymentsDropdown.init();
}) //End ready