PATH:
home
/
lab2454c
/
incforce.com
/
wp-content
/
plugins
/
paid-memberships-pro
/
js
jQuery(document).ready(function(){ // Discount code JS if we are showing discount codes. if ( pmpro.show_discount_code ) { //update discount code link to show field at top of form jQuery('#other_discount_code_toggle').attr('href', 'javascript:void(0);'); jQuery('#other_discount_code_toggle').click(function() { jQuery('#other_discount_code_tr').show(); jQuery('#other_discount_code_p').hide(); jQuery('#other_discount_code').focus(); }); //update real discount code field as the other discount code field is updated jQuery('#other_discount_code').keyup(function() { jQuery('#discount_code').val(jQuery('#other_discount_code').val()); }); jQuery('#other_discount_code').blur(function() { jQuery('#discount_code').val(jQuery('#other_discount_code').val()); }); //update other discount code field as the real discount code field is updated jQuery('#discount_code').keyup(function() { jQuery('#other_discount_code').val(jQuery('#discount_code').val()); }); jQuery('#discount_code').blur(function() { jQuery('#other_discount_code').val(jQuery('#discount_code').val()); }); // Top discount code field click handler. jQuery('#other_discount_code_button').click(function() { var code = jQuery('#other_discount_code').val(); var level_id = jQuery('#level').val(); if(code) { //hide any previous message jQuery('.pmpro_discount_code_msg').hide(); //disable the apply button jQuery('#other_discount_code_button').attr('disabled', 'disabled'); jQuery.ajax({ url: pmpro.ajaxurl, type:'GET',timeout: pmpro.ajax_timeout, dataType: 'html', data: "action=applydiscountcode&code=" + code + "&level=" + level_id + "&msgfield=pmpro_message", error: function(xml){ alert('Error applying discount code [1]'); //enable apply button jQuery('#other_discount_code_button').removeAttr('disabled'); }, success: function(responseHTML){ if (responseHTML == 'error') { alert('Error applying discount code [2]'); } else { jQuery('#pmpro_message').html(responseHTML); } //enable invite button jQuery('#other_discount_code_button').removeAttr('disabled'); } }); } }); // Bottom discount code field click handler. jQuery('#discount_code_button').click(function() { var code = jQuery('#discount_code').val(); var level_id = jQuery('#level').val(); if(code) { //hide any previous message jQuery('.pmpro_discount_code_msg').hide(); //disable the apply button jQuery('#discount_code_button').attr('disabled', 'disabled'); jQuery.ajax({ url: pmpro.ajaxurl,type:'GET',timeout: pmpro.ajax_timeout, dataType: 'html', data: "action=applydiscountcode&code=" + code + "&level=" + level_id + "&msgfield=discount_code_message", error: function(xml){ alert('Error applying discount code [1]'); //enable apply button jQuery('#discount_code_button').removeAttr('disabled'); }, success: function(responseHTML){ if (responseHTML == 'error') { alert('Error applying discount code [2]'); } else { jQuery('#discount_code_message').html(responseHTML); } //enable invite button jQuery('#discount_code_button').removeAttr('disabled'); } }); } }); } // Validate credit card number and determine card type. if ( typeof jQuery('#AccountNumber').validateCreditCard == 'function' ) { jQuery('#AccountNumber').validateCreditCard(function(result) { var cardtypenames = { "amex" : "American Express", "diners_club_carte_blanche" : "Diners Club Carte Blanche", "diners_club_international" : "Diners Club International", "discover" : "Discover", "jcb" : "JCB", "laser" : "Laser", "maestro" : "Maestro", "mastercard" : "Mastercard", "visa" : "Visa", "visa_electron" : "Visa Electron" }; if(result.card_type) jQuery('#CardType').val(cardtypenames[result.card_type.name]); else jQuery('#CardType').val('Unknown Card Type'); }); } // Find ALL <form> tags on your page jQuery('form').submit(function(){ // On submit disable its submit button jQuery('input[type=submit]', this).attr('disabled', 'disabled'); jQuery('input[type=image]', this).attr('disabled', 'disabled'); jQuery('#pmpro_processing_message').css('visibility', 'visible'); }); //add required to required fields if ( ! jQuery( '.pmpro_required' ).next().hasClass( "pmpro_asterisk" ) ) { jQuery( '.pmpro_required' ).closest( '.pmpro_checkout-field' ).append( '<span class="pmpro_asterisk"> <abbr title="Required Field">*</abbr></span>' ); } //Loop through all radio type fields and move the asterisk. jQuery('.pmpro_checkout-field-radio').each(function () { if (jQuery(this).find('span').hasClass('pmpro_asterisk')) { jQuery(this).find(".pmpro_asterisk").remove(); jQuery(this).find('label').first().append('<span class="pmpro_asterisk"> <abbr title="Required Field">*</abbr></span>'); } }); //move asterisk before hint <p>'s jQuery( 'span.pmpro_asterisk' ).each(function() { var prev = jQuery(this).prev(); if ( prev.is('p') ) { jQuery(this).insertBefore(prev); } }); //unhighlight error fields when the user edits them jQuery('.pmpro_error').bind("change keyup input", function() { jQuery(this).removeClass('pmpro_error'); }); //click apply button on enter in discount code box jQuery('#discount_code').keydown(function (e){ if(e.keyCode == 13){ e.preventDefault(); jQuery('#discount_code_button').click(); } }); //hide apply button if a discount code was passed in if( pmpro.discount_code_passed_in ) { jQuery('#discount_code_button').hide(); jQuery('#discount_code').bind('change keyup', function() { jQuery('#discount_code_button').show(); }); } //click apply button on enter in *other* discount code box jQuery('#other_discount_code').keydown(function (e){ if(e.keyCode == 13){ e.preventDefault(); jQuery('#other_discount_code_button').click(); } }); //add javascriptok hidden field to checkout jQuery("input[name=submit-checkout]").after('<input type="hidden" name="javascriptok" value="1" />'); // Keep bottom message box in sync with the top one. jQuery('#pmpro_message').bind("DOMSubtreeModified",function(){ setTimeout( function(){ pmpro_copyMessageToBottom() }, 200); }); function pmpro_copyMessageToBottom() { jQuery('#pmpro_message_bottom').html(jQuery('#pmpro_message').html()); jQuery('#pmpro_message_bottom').attr('class', jQuery('#pmpro_message').attr('class')); if(jQuery('#pmpro_message').is(":visible")) { jQuery('#pmpro_message_bottom').show(); } else { jQuery('#pmpro_message_bottom').hide(); } } }); // Get non-sensitve checkout form data to be sent to checkout_levels endpoint. function pmpro_getCheckoutFormDataForCheckoutLevels() { // We need the level, discount code, and any field with the pmpro_alter_price CSS class. const checkoutFormData = jQuery( "#level, #discount_code, #pmpro_form .pmpro_alter_price" ).serializeArray(); // Double check to remove sensitive data from the array. const sensitiveCheckoutRequestVars = pmpro.sensitiveCheckoutRequestVars; for ( var i = 0; i < checkoutFormData.length; i++ ) { if ( sensitiveCheckoutRequestVars.includes( checkoutFormData[i].name ) ) { // Remove sensitive data from form data and adjust index to account for removed item. checkoutFormData.splice( i, 1 ); i--; } } // Return form data as string. return jQuery.param( checkoutFormData ); }
[-] pmpro-stripe.js
[edit]
[-] pmpro-admin.js
[edit]
[-] select2.min.js
[edit]
[-] pmpro-confirmation.js
[edit]
[+]
..
[-] pmpro-recaptcha-v3.js
[edit]
[-] pmpro-cancel.js
[edit]
[-] updates.js
[edit]
[-] jquery.creditCardValidator.js
[edit]
[-] pmpro-confetti.js
[edit]
[+]
blocks
[-] pmpro-login.js
[edit]
[-] pmpro-paypal.js
[edit]
[-] pmpro-braintree.js
[edit]
[-] jsapi.js
[edit]
[-] pmpro-recaptcha-v2.js
[edit]
[-] pmpro-checkout.js
[edit]
[-] corechart.js
[edit]