<?php
/**
* Template: Checkout
*
* See documentation for how to override the PMPro templates.
* @link https://www.paidmembershipspro.com/documentation/templates/
*
* @version 2.0.2
*
* @author Paid Memberships Pro
*/
global $gateway, $pmpro_review, $skip_account_fields, $pmpro_paypal_token, $wpdb, $current_user, $pmpro_msg, $pmpro_msgt, $pmpro_requirebilling, $pmpro_level, $pmpro_levels, $tospage, $pmpro_show_discount_code, $pmpro_error_fields, $pmpro_default_country;
global $discount_code, $username, $password, $password2, $bfirstname, $blastname, $baddress1, $baddress2, $bcity, $bstate, $bzipcode, $bcountry, $bphone, $bemail, $bconfirmemail, $CardType, $AccountNumber, $ExpirationMonth, $ExpirationYear;
/**
* Filter to set if PMPro uses email or text as the type for email field inputs.
*
* @param bool $use_email_type , true to use email type, false to use text type
*
* @since 1.8.4.5
*
*/
$pmpro_email_field_type = apply_filters( 'pmpro_email_field_type', true );
// Set the wrapping class for the checkout div based on the default gateway;
$default_gateway = pmpro_getOption( 'gateway' );
if ( empty( $default_gateway ) ) {
$pmpro_checkout_gateway_class = 'pmpro_checkout_gateway-none';
} else {
$pmpro_checkout_gateway_class = 'pmpro_checkout_gateway-' . $default_gateway;
}
?>
<?php do_action( 'pmpro_checkout_before_form' ); ?>
<div id="pmpro_level-<?php echo $pmpro_level->id; ?>" class="pmpro_level-<?php echo $pmpro_level->id; ?>">
<form id="pmpro_form" class="pmpro_form" action="<?php if ( ! empty( $_REQUEST['review'] ) ) {
echo pmpro_url( "checkout", "?level=" . $pmpro_level->id );
} ?>" method="post">
<input type="hidden" id="level" name="level" value="<?php echo esc_attr( $pmpro_level->id ) ?>"/>
<input type="hidden" id="checkjavascript" name="checkjavascript" value="1"/>
<?php if ( $discount_code && $pmpro_review ) { ?>
<input class="input pmpro_alter_price discount_code" id="discount_code" name="discount_code" type="hidden"
size="20" value="<?php echo esc_attr( $discount_code ) ?>"/>
<?php } ?>
<?php if ( $pmpro_msg ) { ?>
<div id="pmpro_message" class="pmpro_message <?php echo $pmpro_msgt ?>">
<?php echo apply_filters( 'pmpro_checkout_message', $pmpro_msg, $pmpro_msgt ) ?>
</div>
<?php } else { ?>
<div id="pmpro_message" class="pmpro_message" style="display: none;"></div>
<?php } ?>
<?php if ( $pmpro_review ) { ?>
<p><?php echo wp_kses( __( 'Almost done. Review the membership information and pricing below then <strong>click the "Complete Payment" button</strong> to finish your order.', 'eduma' ), array( 'strong' => array() ) ); ?></p>
<?php } ?>
<?php
$include_pricing_fields = apply_filters( 'pmpro_include_pricing_fields', true );
if ( $include_pricing_fields ) {
?>
<table id="pmpro_pricing_fields" class="pmpro_checkout" width="100%" cellpadding="0" cellspacing="0"
border="0">
<thead>
<tr>
<th>
<h3 class="pmpro_thead-name"><?php _e( 'Membership Level', 'eduma' ); ?></h3>
<?php if ( count( $pmpro_levels ) > 1 ) { ?><span class="pmpro_thead-msg">
<a href="<?php echo pmpro_url( "levels" ); ?>"><?php _e( 'Change level', 'eduma' ); ?></a>
</span><?php } ?>
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="lp-pmpro-td">
<div class="lp-pmpro-name">
<h4><?php echo $pmpro_level->name; ?></h4>
</div>
<div class="lp-pmpro-content">
<?php echo '<div class="lp-pmpro-desc"><label>' . esc_html__( 'Membership level:', 'eduma' ) . '</label>' . $pmpro_level->name . '</div>'; ?>
<?php if ( $discount_code && pmpro_checkDiscountCode( $discount_code ) ) { ?>
<?php printf( __( '<p class="pmpro_level_discount_applied">The <strong>%s</strong> code has been applied to your order.</p>', 'eduma' ), $discount_code ); ?>
<?php } ?>
<?php echo '<div class="lp-pmpro-desc lp-pmpro-price"><label>' . esc_html__( 'Price:', 'eduma' ) . '</label>' . pmpro_getLevelCost( $pmpro_level, true, true ) . '</div>'; ?>
<?php echo '<div class="lp-pmpro-desc"><label>' . esc_html__( 'Expires after:', 'eduma' ) . '</label>' . sprintf( __( "%d %s", "eduma" ), $pmpro_level->expiration_number, pmpro_translate_billing_period( $pmpro_level->expiration_period, $pmpro_level->expiration_number ) ) . '</div>'; ?>
<?php do_action( "pmpro_checkout_after_level_cost" ); ?>
<?php if ( $pmpro_show_discount_code ) { ?>
<?php if ( $discount_code && ! $pmpro_review ) { ?>
<p id="other_discount_code_p" class="pmpro_small">
<a id="other_discount_code_a"
href="#discount_code"><?php _e( 'Click here to change your discount code', 'eduma' ); ?></a>.
</p>
<?php } elseif ( ! $pmpro_review ) { ?>
<p id="other_discount_code_p"
class="pmpro_small"><?php _e( 'Do you have a discount code?', 'eduma' ); ?>
<a id="other_discount_code_a"
href="#discount_code"><?php _e( 'Click here to enter your discount code', 'eduma' ); ?></a>.
</p>
<?php } elseif ( $pmpro_review && $discount_code ) { ?>
<p>
<strong><?php _e( 'Discount Code', 'eduma' ); ?>
:</strong> <?php echo $discount_code ?>
</p>
<?php } ?>
<?php } ?>
<?php
/**
* All devs to filter the level description at checkout.
* We also have a function in includes/filters.php that applies the the_content filters to this description.
*
* @param string $description The level description.
* @param object $pmpro_level The PMPro Level object.
*/
$level_description = apply_filters( 'pmpro_level_description', $pmpro_level->description, $pmpro_level );
if ( ! empty( $level_description ) ) {
echo '<div class="lp-pmpro-desc lp-pmpro-description"><label>' . esc_html__( 'Description:', 'eduma' ) . '</label>' . $pmpro_level->description . '</div>';
}
?>
</div>
</td>
</tr>
<?php if ( $pmpro_show_discount_code ) { ?>
<tr id="other_discount_code_tr" style="display: none;">
<td>
<div>
<label for="other_discount_code"><?php _e( 'Discount Code', 'eduma' ); ?></label>
<input id="other_discount_code" name="other_discount_code" type="text"
class="input <?php echo pmpro_getClassForField( "other_discount_code" ); ?>"
size="20" value="<?php echo esc_attr( $discount_code ) ?>"/>
<input type="button" name="other_discount_code_button"
id="other_discount_code_button" value="<?php _e( 'Apply', 'eduma' ); ?>"/>
</div>
</td>
</tr>
<?php } ?>
</tbody>
</table>
<?php
} // if ( $include_pricing_fields )
?>
<?php if ( $pmpro_show_discount_code ) { ?>
<script>
<!--
//update discount code link to show field at top of form
jQuery('#other_discount_code_a').attr('href', 'javascript:void(0);');
jQuery('#other_discount_code_a').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());
});
//applying a discount code
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 : '<?php echo admin_url( 'admin-ajax.php' )?>',
type : 'GET',
timeout :<?php echo apply_filters( "pmpro_ajax_timeout", 5000, "applydiscountcode" );?>,
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');
}
});
}
});
-->
</script>
<?php } ?>
<?php
do_action( 'pmpro_checkout_after_pricing_fields' );
?>
<?php if ( ! $skip_account_fields && ! $pmpro_review ) { ?>
<table id="pmpro_user_fields" class="pmpro_checkout" width="100%" cellpadding="0" cellspacing="0"
border="0">
<thead>
<tr>
<th>
<h3 class="pmpro_thead-name"><?php _e( 'Account Information', 'eduma' ); ?></h3>
<span class="pmpro_thead-msg"><?php _e( 'Already have an account?', 'eduma' ); ?>
<a href="<?php echo add_query_arg( 'redirect_to', pmpro_url( "checkout", "?level=" . $pmpro_level->id ), thim_get_login_page_url() ); ?>"><?php _e( 'Login here', 'eduma' ); ?></a>
</span>
</th>
</tr>
</thead>
<tbody>
<tr class="lp-pmpro-account-info">
<td class="lp-pmpro-td">
<div class="lp-pmpro-desc">
<label for="username"><?php _e( 'Username', 'eduma' ); ?></label>
<input id="username" name="username" type="text"
class="input <?php echo pmpro_getClassForField( "username" ); ?>" size="30"
value="<?php echo esc_attr( $username ) ?>"/>
</div>
<?php
do_action( 'pmpro_checkout_after_username' );
?>
<div class="lp-pmpro-desc">
<label for="password"><?php _e( 'Password', 'eduma' ); ?></label>
<input id="password" name="password" type="password"
class="input <?php echo pmpro_getClassForField( "password" ); ?>" size="30"
value="<?php echo esc_attr( $password ) ?>"/>
</div>
<?php
$pmpro_checkout_confirm_password = apply_filters( "pmpro_checkout_confirm_password", true );
if ( $pmpro_checkout_confirm_password ) {
?>
<div class="lp-pmpro-desc">
<label for="password2"><?php _e( 'Confirm Password', 'eduma' ); ?></label>
<input id="password2" name="password2" type="password"
class="input <?php echo pmpro_getClassForField( "password2" ); ?>" size="30"
value="<?php echo esc_attr( $password2 ) ?>"/>
</div>
<?php
} else {
?>
<input type="hidden" name="password2_copy" value="1"/>
<?php
}
?>
<?php
do_action( 'pmpro_checkout_after_password' );
?>
<div class="lp-pmpro-desc">
<label for="bemail"><?php _e( 'E-mail Address', 'eduma' ); ?></label>
<input id="bemail" name="bemail"
type="<?php echo( $pmpro_email_field_type ? 'email' : 'text' ); ?>"
class="input <?php echo pmpro_getClassForField( "bemail" ); ?>" size="30"
value="<?php echo esc_attr( $bemail ) ?>"/>
</div>
<?php
$pmpro_checkout_confirm_email = apply_filters( "pmpro_checkout_confirm_email", true );
if ( $pmpro_checkout_confirm_email ) {
?>
<div class="lp-pmpro-desc">
<label for="bconfirmemail"><?php _e( 'Confirm E-mail Address', 'eduma' ); ?></label>
<input id="bconfirmemail" name="bconfirmemail"
type="<?php echo( $pmpro_email_field_type ? 'email' : 'text' ); ?>"
class="input <?php echo pmpro_getClassForField( "bconfirmemail" ); ?>"
size="30" value="<?php echo esc_attr( $bconfirmemail ) ?>"/>
</div>
<?php
} else {
?>
<input type="hidden" name="bconfirmemail_copy" value="1"/>
<?php
}
?>
<?php
do_action( 'pmpro_checkout_after_email' );
?>
<div class="pmpro_hidden">
<label for="fullname"><?php _e( 'Full Name', 'eduma' ); ?></label>
<input id="fullname" name="fullname" type="text"
class="input <?php echo pmpro_getClassForField( "fullname" ); ?>" size="30"
value=""/>
<strong><?php _e( 'LEAVE THIS BLANK', 'eduma' ); ?></strong>
</div>
<div class="pmpro_captcha">
<?php
global $recaptcha, $recaptcha_publickey;
if ( $recaptcha == 2 || ( $recaptcha == 1 && pmpro_isLevelFree( $pmpro_level ) ) ) {
echo pmpro_recaptcha_get_html( $recaptcha_publickey, null, true );
}
?>
</div>
<?php
do_action( 'pmpro_checkout_after_captcha' );
?>
</td>
</tr>
</tbody>
</table>
<?php } elseif ( $current_user->ID && ! $pmpro_review ) { ?>
<p id="pmpro_account_loggedin" class="message message-notice">
<?php printf( __( 'You are logged in as <strong>%s</strong>. If you would like to use a different account for this membership, <a href="%s">log out now</a>.', 'eduma' ), $current_user->user_login, wp_logout_url( $_SERVER['REQUEST_URI'] ) ); ?>
</p>
<?php } ?>
<?php
do_action( 'pmpro_checkout_after_user_fields' );
?>
<?php
do_action( 'pmpro_checkout_boxes' );
?>
<?php if ( pmpro_getGateway() == "paypal" && empty( $pmpro_review ) && true == apply_filters( 'pmpro_include_payment_option_for_paypal', true ) ) { ?>
<table id="pmpro_payment_method" class="pmpro_checkout top1em" width="100%" cellpadding="0"
cellspacing="0" border="0"
<?php if ( ! $pmpro_requirebilling ) { ?>style="display: none;"<?php } ?>>
<thead>
<tr>
<th><?php _e( 'Choose your Payment Method', 'eduma' ); ?></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div>
<span class="gateway_paypal">
<input type="radio" name="gateway" value="paypal"
<?php if ( ! $gateway || $gateway == "paypal" ) { ?>checked="checked"<?php } ?> />
<a href="javascript:void(0);"
class="pmpro_radio"><?php _e( 'Check Out with a Credit Card Here', 'eduma' ); ?></a>
</span>
<span class="gateway_paypalexpress">
<input type="radio" name="gateway" value="paypalexpress"
<?php if ( $gateway == "paypalexpress" ) { ?>checked="checked"<?php } ?> />
<a href="javascript:void(0);"
class="pmpro_radio"><?php _e( 'Check Out with PayPal', 'eduma' ); ?></a>
</span>
</div>
</td>
</tr>
</tbody>
</table>
<?php } ?>
<?php
$pmpro_include_billing_address_fields = apply_filters( 'pmpro_include_billing_address_fields', true );
if ( $pmpro_include_billing_address_fields ) {
?>
<table id="pmpro_billing_address_fields" class="pmpro_checkout top1em" width="100%" cellpadding="0"
cellspacing="0" border="0"
<?php if ( ! $pmpro_requirebilling || apply_filters( "pmpro_hide_billing_address_fields", false ) ){ ?>style="display: none;"<?php } ?>>
<thead>
<tr>
<th><?php _e( 'Billing Address', 'eduma' ); ?></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div>
<label for="bfirstname"><?php _e( 'First Name', 'eduma' ); ?></label>
<input id="bfirstname" name="bfirstname" type="text"
class="input <?php echo pmpro_getClassForField( "bfirstname" ); ?>" size="30"
value="<?php echo esc_attr( $bfirstname ) ?>"/>
</div>
<div>
<label for="blastname"><?php _e( 'Last Name', 'eduma' ); ?></label>
<input id="blastname" name="blastname" type="text"
class="input <?php echo pmpro_getClassForField( "blastname" ); ?>" size="30"
value="<?php echo esc_attr( $blastname ) ?>"/>
</div>
<div>
<label for="baddress1"><?php _e( 'Address 1', 'eduma' ); ?></label>
<input id="baddress1" name="baddress1" type="text"
class="input <?php echo pmpro_getClassForField( "baddress1" ); ?>" size="30"
value="<?php echo esc_attr( $baddress1 ) ?>"/>
</div>
<div>
<label for="baddress2"><?php _e( 'Address 2', 'eduma' ); ?></label>
<input id="baddress2" name="baddress2" type="text"
class="input <?php echo pmpro_getClassForField( "baddress2" ); ?>" size="30"
value="<?php echo esc_attr( $baddress2 ) ?>"/>
</div>
<?php
$longform_address = apply_filters( "pmpro_longform_address", true );
if ( $longform_address ) {
?>
<div>
<label for="bcity"><?php _e( 'City', 'eduma' ); ?></label>
<input id="bcity" name="bcity" type="text"
class="input <?php echo pmpro_getClassForField( "bcity" ); ?>" size="30"
value="<?php echo esc_attr( $bcity ) ?>"/>
</div>
<div>
<label for="bstate"><?php _e( 'State', 'eduma' ); ?></label>
<input id="bstate" name="bstate" type="text"
class="input <?php echo pmpro_getClassForField( "bstate" ); ?>" size="30"
value="<?php echo esc_attr( $bstate ) ?>"/>
</div>
<div>
<label for="bzipcode"><?php _e( 'Postal Code', 'eduma' ); ?></label>
<input id="bzipcode" name="bzipcode" type="text"
class="input <?php echo pmpro_getClassForField( "bzipcode" ); ?>" size="30"
value="<?php echo esc_attr( $bzipcode ) ?>"/>
</div>
<?php
} else {
?>
<div>
<label for="bcity_state_zip"><?php _e( 'City, State Zip', 'eduma' ); ?></label>
<input id="bcity" name="bcity" type="text"
class="input <?php echo pmpro_getClassForField( "bcity" ); ?>" size="14"
value="<?php echo esc_attr( $bcity ) ?>"/>,
<?php
$state_dropdowns = apply_filters( "pmpro_state_dropdowns", false );
if ( $state_dropdowns === true || $state_dropdowns == "names" ) {
global $pmpro_states;
?>
<select name="bstate"
class=" <?php echo pmpro_getClassForField( "bstate" ); ?>">
<option value="">--</option>
<?php
foreach ( $pmpro_states as $ab => $st ) {
?>
<option value="<?php echo esc_attr( $ab ); ?>"
<?php if ( $ab == $bstate ) { ?>selected="selected"<?php } ?>><?php echo $st; ?></option>
<?php } ?>
</select>
<?php
} elseif ( $state_dropdowns == "abbreviations" ) {
global $pmpro_states_abbreviations;
?>
<select name="bstate"
class=" <?php echo pmpro_getClassForField( "bstate" ); ?>">
<option value="">--</option>
<?php
foreach ( $pmpro_states_abbreviations as $ab ) {
?>
<option value="<?php echo esc_attr( $ab ); ?>"
<?php if ( $ab == $bstate ) { ?>selected="selected"<?php } ?>><?php echo $ab; ?></option>
<?php } ?>
</select>
<?php
} else {
?>
<input id="bstate" name="bstate" type="text"
class="input <?php echo pmpro_getClassForField( "bstate" ); ?>" size="2"
value="<?php echo esc_attr( $bstate ) ?>"/>
<?php
}
?>
<input id="bzipcode" name="bzipcode" type="text"
class="input <?php echo pmpro_getClassForField( "bzipcode" ); ?>" size="5"
value="<?php echo esc_attr( $bzipcode ) ?>"/>
</div>
<?php
}
?>
<?php
$show_country = apply_filters( "pmpro_international_addresses", true );
if ( $show_country ) {
?>
<div>
<label for="bcountry"><?php _e( 'Country', 'eduma' ); ?></label>
<select name="bcountry"
class=" <?php echo pmpro_getClassForField( "bcountry" ); ?>">
<?php
global $pmpro_countries, $pmpro_default_country;
if ( ! $bcountry ) {
$bcountry = $pmpro_default_country;
}
foreach ( $pmpro_countries as $abbr => $country ) {
?>
<option value="<?php echo $abbr ?>"
<?php if ( $abbr == $bcountry ) { ?>selected="selected"<?php } ?>><?php echo $country ?></option>
<?php
}
?>
</select>
</div>
<?php
} else {
?>
<input type="hidden" name="bcountry" value="US"/>
<?php
}
?>
<div>
<label for="bphone"><?php _e( 'Phone', 'eduma' ); ?></label>
<input id="bphone" name="bphone" type="text"
class="input <?php echo pmpro_getClassForField( "bphone" ); ?>" size="30"
value="<?php echo esc_attr( formatPhone( $bphone ) ) ?>"/>
</div>
<?php if ( $skip_account_fields ) { ?>
<?php
if ( $current_user->ID ) {
if ( ! $bemail && $current_user->user_email ) {
$bemail = $current_user->user_email;
}
if ( ! $bconfirmemail && $current_user->user_email ) {
$bconfirmemail = $current_user->user_email;
}
}
?>
<div>
<label for="bemail"><?php _e( 'E-mail Address', 'eduma' ); ?></label>
<input id="bemail" name="bemail"
type="<?php echo( $pmpro_email_field_type ? 'email' : 'text' ); ?>"
class="input <?php echo pmpro_getClassForField( "bemail" ); ?>" size="30"
value="<?php echo esc_attr( $bemail ) ?>"/>
</div>
<?php
$pmpro_checkout_confirm_email = apply_filters( "pmpro_checkout_confirm_email", true );
if ( $pmpro_checkout_confirm_email ) {
?>
<div>
<label for="bconfirmemail"><?php _e( 'Confirm E-mail', 'eduma' ); ?></label>
<input id="bconfirmemail" name="bconfirmemail"
type="<?php echo( $pmpro_email_field_type ? 'email' : 'text' ); ?>"
class="input <?php echo pmpro_getClassForField( "bconfirmemail" ); ?>"
size="30" value="<?php echo esc_attr( $bconfirmemail ) ?>"/>
</div>
<?php
} else {
?>
<input type="hidden" name="bconfirmemail_copy" value="1"/>
<?php
}
?>
<?php } ?>
</td>
</tr>
</tbody>
</table>
<?php } ?>
<?php do_action( "pmpro_checkout_after_billing_fields" ); ?>
<?php
$pmpro_accepted_credit_cards = pmpro_getOption( "accepted_credit_cards" );
$pmpro_accepted_credit_cards = explode( ",", $pmpro_accepted_credit_cards );
$pmpro_accepted_credit_cards_string = pmpro_implodeToEnglish( $pmpro_accepted_credit_cards );
?>
<?php
$pmpro_include_payment_information_fields = apply_filters( "pmpro_include_payment_information_fields", true );
if ( $pmpro_include_payment_information_fields ) {
?>
<table id="pmpro_payment_information_fields" class="pmpro_checkout top1em" width="100%" cellpadding="0"
cellspacing="0" border="0"
<?php if ( ! $pmpro_requirebilling || apply_filters( "pmpro_hide_payment_information_fields", false ) ) { ?>style="display: none;"<?php } ?>>
<thead>
<tr>
<th>
<span class="pmpro_thead-name"><?php _e( 'Payment Information', 'eduma' ); ?></span>
<span
class="pmpro_thead-msg"><?php printf( __( 'We Accept %s', 'eduma' ), $pmpro_accepted_credit_cards_string ); ?></span>
</th>
</tr>
</thead>
<tbody>
<tr valign="top">
<td>
<?php
$sslseal = pmpro_getOption( "sslseal" );
if ( $sslseal ) {
?>
<div class="pmpro_sslseal"><?php echo stripslashes( $sslseal ) ?></div>
<?php
}
?>
<?php
$pmpro_include_cardtype_field = apply_filters( 'pmpro_include_cardtype_field', false );
if ( $pmpro_include_cardtype_field ) {
?>
<div class="pmpro_payment-card-type">
<label for="CardType"><?php _e( 'Card Type', 'eduma' ); ?></label>
<select id="CardType" name="CardType"
class=" <?php echo pmpro_getClassForField( "CardType" ); ?>">
<?php foreach ( $pmpro_accepted_credit_cards as $cc ) { ?>
<option value="<?php echo $cc ?>"
<?php if ( $CardType == $cc ) { ?>selected="selected"<?php } ?>><?php echo $cc ?></option>
<?php } ?>
</select>
</div>
<?php
} else {
?>
<input type="hidden" id="CardType" name="CardType"
value="<?php echo esc_attr( $CardType ); ?>"/>
<?php
}
?>
<div class="pmpro_payment-account-number">
<label for="AccountNumber"><?php _e( 'Card Number', 'eduma' ); ?></label>
<input id="AccountNumber" name="AccountNumber"
class="input <?php echo pmpro_getClassForField( "AccountNumber" ); ?>"
type="text" size="25" value="<?php echo esc_attr( $AccountNumber ) ?>"
data-encrypted-name="number" autocomplete="off"/>
</div>
<div class="pmpro_payment-expiration">
<label for="ExpirationMonth"><?php _e( 'Expiration Date', 'eduma' ); ?></label>
<select id="ExpirationMonth" name="ExpirationMonth"
class=" <?php echo pmpro_getClassForField( "ExpirationMonth" ); ?>">
<option value="01"
<?php if ( $ExpirationMonth == "01" ) { ?>selected="selected"<?php } ?>>01
</option>
<option value="02"
<?php if ( $ExpirationMonth == "02" ) { ?>selected="selected"<?php } ?>>02
</option>
<option value="03"
<?php if ( $ExpirationMonth == "03" ) { ?>selected="selected"<?php } ?>>03
</option>
<option value="04"
<?php if ( $ExpirationMonth == "04" ) { ?>selected="selected"<?php } ?>>04
</option>
<option value="05"
<?php if ( $ExpirationMonth == "05" ) { ?>selected="selected"<?php } ?>>05
</option>
<option value="06"
<?php if ( $ExpirationMonth == "06" ) { ?>selected="selected"<?php } ?>>06
</option>
<option value="07"
<?php if ( $ExpirationMonth == "07" ) { ?>selected="selected"<?php } ?>>07
</option>
<option value="08"
<?php if ( $ExpirationMonth == "08" ) { ?>selected="selected"<?php } ?>>08
</option>
<option value="09"
<?php if ( $ExpirationMonth == "09" ) { ?>selected="selected"<?php } ?>>09
</option>
<option value="10"
<?php if ( $ExpirationMonth == "10" ) { ?>selected="selected"<?php } ?>>10
</option>
<option value="11"
<?php if ( $ExpirationMonth == "11" ) { ?>selected="selected"<?php } ?>>11
</option>
<option value="12"
<?php if ( $ExpirationMonth == "12" ) { ?>selected="selected"<?php } ?>>12
</option>
</select>/<select id="ExpirationYear" name="ExpirationYear"
class=" <?php echo pmpro_getClassForField( "ExpirationYear" ); ?>">
<?php
$num_years = apply_filters( 'pmpro_num_expiration_years', 10 );
for ( $i = date_i18n( "Y" ); $i < intval( date_i18n( "Y" ) ) + intval( $num_years ); $i ++ ) {
?>
<option value="<?php echo esc_attr( $i ) ?>"
<?php if ( $ExpirationYear == $i ) { ?>selected="selected"<?php } ?>><?php echo $i ?></option>
<?php
}
?>
</select>
</div>
<?php
$pmpro_show_cvv = apply_filters( "pmpro_show_cvv", true );
if ( $pmpro_show_cvv ) { ?>
<div class="pmpro_payment-cvv'">
<label for="CVV"><?php esc_html_e('Security Code (CVC)', 'paid-memberships-pro' );?></label>
<input id="CVV" name="CVV" type="text" size="6" value="<?php if(!empty($_REQUEST['CVV'])) { echo esc_attr( sanitize_text_field( $_REQUEST['CVV'] ) ); }?>" class="<?php echo pmpro_getClassForField( "CVV" ); ?>" /> <small>(<a href="javascript:void(0);" onclick="javascript:window.open('<?php echo pmpro_https_filter(PMPRO_URL); ?>/pages/popup-cvv.html','cvv','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=600, height=475');"><?php esc_html_e("what's this?", 'eduma' );?></a>)</small>
</div>
<?php } ?>
<?php if ( $pmpro_show_discount_code ) { ?>
<div class="pmpro_payment-discount-code">
<label for="discount_code"><?php _e( 'Discount Code', 'eduma' ); ?></label>
<input class="input <?php echo pmpro_getClassForField( "discount_code" ); ?>"
id="discount_code" name="discount_code" type="text" size="20"
value="<?php echo esc_attr( $discount_code ) ?>"/>
<input type="button" id="discount_code_button" name="discount_code_button"
value="<?php _e( 'Apply', 'eduma' ); ?>"/>
<p id="discount_code_message" class="pmpro_message" style="display: none;"></p>
</div>
<?php } ?>
</td>
</tr>
</tbody>
</table>
<?php } ?>
<script>
<!--
//checking a discount code
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 : '<?php echo admin_url( 'admin-ajax.php' )?>',
type : 'GET',
timeout :<?php echo apply_filters( "pmpro_ajax_timeout", 5000, "applydiscountcode" );?>,
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');
}
});
}
});
-->
</script>
<?php do_action( 'pmpro_checkout_after_payment_information_fields' ); ?>
<?php
if ( $tospage && ! $pmpro_review ) {
?>
<table id="pmpro_tos_fields" class="pmpro_checkout top1em" width="100%" cellpadding="0" cellspacing="0"
border="0">
<thead>
<tr>
<th><?php echo $tospage->post_title ?></th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>
<div id="pmpro_license">
<?php echo wpautop( do_shortcode( $tospage->post_content ) ); ?>
</div>
<input type="checkbox" name="tos" value="1" id="tos"/>
<label class="pmpro_normal pmpro_clickable"
for="tos"><?php printf( __( 'I agree to the %s', 'eduma' ), $tospage->post_title ); ?></label>
</td>
</tr>
</tbody>
</table>
<?php
}
?>
<?php do_action( "pmpro_checkout_after_tos_fields" ); ?>
<div
class="pmpro_checkout-field pmpro_captcha pmpro_captcha">
<?php
global $recaptcha, $recaptcha_publickey;
if ( $recaptcha == 2 || $recaptcha == 1 ) {
echo pmpro_recaptcha_get_html( $recaptcha_publickey, null, true );
}
?>
</div> <!-- end pmpro_captcha -->
<?php
do_action( 'pmpro_checkout_after_captcha' );
?>
<?php do_action( "pmpro_checkout_before_submit_button" ); ?>
<div class="pmpro_submit">
<hr/>
<?php if ( $pmpro_msg ) { ?>
<div id="pmpro_message_bottom"
class="pmpro_message <?php echo $pmpro_msgt; ?>"><?php echo $pmpro_msg; ?></div>
<?php } else { ?>
<div id="pmpro_message_bottom" class="pmpro_message"
style="display: none;"></div>
<?php } ?>
<?php if ( $pmpro_review ) { ?>
<span id="pmpro_submit_span">
<input type="hidden" name="confirm" value="1"/>
<input type="hidden" name="token" value="<?php echo esc_attr( $pmpro_paypal_token ) ?>"/>
<input type="hidden" name="gateway" value="<?php echo esc_attr( $gateway ); ?>"/>
<input type="submit" id="pmpro_btn-submit" class="pmpro_btn pmpro_btn-submit-checkout"
value="<?php _e( 'Complete Payment', 'eduma' ); ?> »"/>
</span>
<?php } else { ?>
<?php
$pmpro_checkout_default_submit_button = apply_filters( 'pmpro_checkout_default_submit_button', true );
if ( $pmpro_checkout_default_submit_button ) {
?>
<span id="pmpro_submit_span">
<input type="hidden" name="submit-checkout" value="1"/>
<input type="submit" id="pmpro_btn-submit" class="pmpro_btn pmpro_btn-submit-checkout"
value="<?php if ( $pmpro_requirebilling ) {
_e( 'Submit and Check Out', 'eduma' );
} else {
_e( 'Submit and Confirm', 'eduma' );
} ?> »"/>
</span>
<?php
}
?>
<?php } ?>
<span id="pmpro_processing_message" style="visibility: hidden;">
<?php
$processing_message = apply_filters( "pmpro_processing_message", __( "Processing...", "pmpro" ) );
echo $processing_message;
?>
</span>
</div>
</form>
<?php do_action( 'pmpro_checkout_after_form' ); ?>
</div> <!-- end pmpro_level-ID -->
<script>
<!--
// 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');
});
//iOS Safari fix (see: http://stackoverflow.com/questions/20210093/stop-safari-on-ios7-prompting-to-save-card-data)
var userAgent = window.navigator.userAgent;
if (userAgent.match(/iPad/i) || userAgent.match(/iPhone/i)) {
jQuery('input[type=submit]').click(function () {
try {
jQuery("input[type=password]").attr("type", "hidden");
} catch (ex) {
try {
jQuery("input[type=password]").prop("type", "hidden");
} catch (ex) {
}
}
});
}
//add required to required fields
jQuery('.pmpro_required').after('<span class="pmpro_asterisk"> <abbr title="Required Field">*</abbr></span>');
//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
<?php if(! empty( $_REQUEST['discount_code'] )) {?>
jQuery('#discount_code_button').hide();
jQuery('#discount_code').bind('change keyup', function () {
jQuery('#discount_code_button').show();
});
<?php } ?>
//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();
}
});
-->
</script>
<script>
<!--
//add javascriptok hidden field to checkout
jQuery("input[name=submit-checkout]").after('<input type="hidden" name="javascriptok" value="1" />');
-->
</script>