File: /home/bibuzptr/elearning.bibu-edu.us/old/wp-content/plugins/paid-memberships-pro/pages/billing.php
<?php
/**
* Template: Billing
*
* See documentation for how to override the PMPro templates.
* @link https://www.paidmembershipspro.com/documentation/templates/
*
* @version 2.0.1
*
* @author Paid Memberships Pro
*/
?>
<div class="<?php echo pmpro_get_element_class( 'pmpro_billing_wrap' ); ?>">
<?php
global $wpdb, $current_user, $gateway, $pmpro_msg, $pmpro_msgt, $show_check_payment_instructions, $show_paypal_link;
global $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.
*
* @since 1.8.4.5
*
* @param bool $use_email_type, true to use email type, false to use text type
*/
$pmpro_email_field_type = apply_filters('pmpro_email_field_type', true);
// Get the default gateway for the site.
$default_gateway = pmpro_getOption( 'gateway' );
// Set the wrapping class for the checkout div based on the default gateway;
if ( empty( $gateway ) ) {
$pmpro_billing_gateway_class = 'pmpro_billing_gateway-none';
} else {
$pmpro_billing_gateway_class = 'pmpro_billing_gateway-' . $gateway;
}
$levels = $current_user->membership_levels;
$has_recurring_levels = pmpro_has_recurring_level();
//Make sure the $level object is a valid level definition
if(!empty($levels) ) {
$level = $levels[0];
$checkout_url = pmpro_url( 'checkout', '?level=' . $level->id );
$logout_url = wp_logout_url( $checkout_url );
?>
<p><?php printf(__("Logged in as <strong>%s</strong>.", 'paid-memberships-pro' ), $current_user->user_login);?> <small><a href="<?php echo esc_url( $logout_url ); ?>"><?php esc_html_e("logout", 'paid-memberships-pro' );?></a></small></p>
<?php
/**
* pmpro_billing_message_top hook to add in general content to the billing page without using custom page templates.
*
* @since 1.9.2
*/
do_action('pmpro_billing_message_top'); ?>
<ul>
<?php
/**
* pmpro_billing_bullets_top hook allows you to add information to the billing list (at the top).
*
* @since 1.9.2
* @param {objects} {$level} {Passes the $level object}
*/
do_action('pmpro_billing_bullets_top', $level);?>
<?php foreach( $levels as $level ) {
if ( $has_recurring_levels != pmpro_isLevelRecurring( $level ) ) {
continue;
}
?>
<li><strong><?php esc_html_e("Level", 'paid-memberships-pro' );?>:</strong> <?php echo esc_html( $level->name ); ?></li>
<?php if($level->billing_amount > 0) { ?>
<li><strong><?php esc_html_e("Membership Fee", 'paid-memberships-pro' );?>:</strong>
<?php
$level = $current_user->membership_level;
if($current_user->membership_level->cycle_number > 1) {
printf(__('%s every %d %s.', 'paid-memberships-pro' ), pmpro_escape_price( pmpro_formatPrice($level->billing_amount) ), $level->cycle_number, pmpro_translate_billing_period($level->cycle_period, $level->cycle_number));
} elseif($current_user->membership_level->cycle_number == 1) {
printf(__('%s per %s.', 'paid-memberships-pro' ), pmpro_escape_price( pmpro_formatPrice($level->billing_amount) ), pmpro_translate_billing_period($level->cycle_period));
} else {
echo pmpro_escape_price( pmpro_formatPrice($current_user->membership_level->billing_amount) );
}
?>
</li>
<?php } ?>
<?php } ?>
<?php if($level->billing_limit) { ?>
<li><strong><?php esc_html_e("Duration", 'paid-memberships-pro' );?>:</strong> <?php echo esc_html( $level->billing_limit . ' ' . sornot( $level->cycle_period, $level->billing_limit ) ); ?></li>
<?php } ?>
<?php
$pmpro_billing_show_payment_method = apply_filters( 'pmpro_billing_show_payment_method'
, true);
if ( $pmpro_billing_show_payment_method && ! empty( $CardType ) && $has_recurring_levels ) { ?>
<li><strong><?php esc_html_e( 'Payment Method', 'paid-memberships-pro' ); ?>: </strong>
<?php echo esc_html( ucwords( $CardType ) ); ?>
<?php _e('ending in', 'paid-memberships-pro' ); ?>
<?php echo esc_html( last4( get_user_meta( $current_user->ID, 'pmpro_AccountNumber', true ) ) ); ?>.
<?php _e('Expiration', 'paid-memberships-pro' );?>: <?php echo esc_html( $ExpirationMonth ); ?>/<?php echo esc_html( $ExpirationYear ); ?>
</li>
<?php
}
?>
<?php
/**
* pmpro_billing_bullets_top hook allows you to add information to the billing list (at the bottom).
*
* @since 1.9.2
* @param {objects} {$level} {Passes the $level object}
*/
do_action('pmpro_billing_bullets_bottom', $level);?>
</ul>
<?php
}
?>
<?php if ( $has_recurring_levels ) {
if ( $show_check_payment_instructions ) {
$instructions = pmpro_getOption("instructions"); ?>
<div class="<?php echo pmpro_get_element_class( 'pmpro_check_instructions' ); ?>"><?php echo wpautop( wp_unslash( $instructions ) ); ?></div>
<hr />
<p class="<?php echo pmpro_get_element_class( 'pmpro_actions_nav' ); ?>">
<span class="<?php echo pmpro_get_element_class( 'pmpro_actions_nav-right' ); ?>"><a href="<?php echo esc_url( pmpro_url( 'account' ) ) ?>"><?php esc_html_e('View Your Membership Account →', 'paid-memberships-pro' );?></a></span>
</p> <!-- end pmpro_actions_nav -->
<?php } elseif ( $show_paypal_link ) { ?>
<p><?php _e('Your payment subscription is managed by PayPal. Please <a href="http://www.paypal.com">login to PayPal here</a> to update your billing information.', 'paid-memberships-pro' );?></p>
<hr />
<p class="<?php echo pmpro_get_element_class( 'pmpro_actions_nav' ); ?>">
<span class="<?php echo pmpro_get_element_class( 'pmpro_actions_nav-right' ); ?>"><a href="<?php echo esc_url( pmpro_url( 'account' ) ) ?>"><?php esc_html_e('View Your Membership Account →', 'paid-memberships-pro' );?></a></span>
</p> <!-- end pmpro_actions_nav -->
<?php } elseif ( $gateway != $default_gateway ) {
// This membership's gateway is not the default site gateway, Pay by Check, or PayPal Express.
?>
<p><?php esc_html_e( 'Your billing information cannot be updated at this time.', 'paid-memberships-pro' ); ?></p>
<?php } else {
// Show the default gateway form and allow billing information update.
?>
<div id="pmpro_level-<?php echo $level->id; ?>" class="<?php echo pmpro_get_element_class( $pmpro_billing_gateway_class, 'pmpro_level-' . $level->id ); ?>">
<form id="pmpro_form" class="<?php echo pmpro_get_element_class( 'pmpro_form' ); ?>" action="<?php echo esc_url( pmpro_url( "billing", "", "https") ) ?>" method="post">
<input type="hidden" name="level" value="<?php echo esc_attr($level->id);?>" />
<?php if($pmpro_msg)
{
?>
<div class="<?php echo pmpro_get_element_class( 'pmpro_message ' . $pmpro_msgt, $pmpro_msgt ); ?>"><?php echo $pmpro_msg?></div>
<?php
}
?>
<?php
$pmpro_include_billing_address_fields = apply_filters('pmpro_include_billing_address_fields', true);
if($pmpro_include_billing_address_fields)
{
?>
<div id="pmpro_billing_address_fields" class="<?php echo pmpro_get_element_class( 'pmpro_checkout', 'pmpro_billing_address_fields' ); ?>">
<hr />
<h3>
<span class="<?php echo pmpro_get_element_class( 'pmpro_checkout-h3-name' ); ?>"><?php esc_html_e('Billing Address', 'paid-memberships-pro' );?></span>
</h3>
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-fields' ); ?>">
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_checkout-field-bfirstname', 'pmpro_checkout-field-bfirstname' ); ?>">
<label for="bfirstname"><?php esc_html_e('First Name', 'paid-memberships-pro' );?></label>
<input id="bfirstname" name="bfirstname" type="text" class="<?php echo pmpro_get_element_class( 'input', 'bfirstname' ); ?>" size="30" value="<?php echo esc_attr($bfirstname);?>" />
</div> <!-- end pmpro_checkout-field-bfirstname -->
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_checkout-field-blastname', 'pmpro_checkout-field-blastname' ); ?>">
<label for="blastname"><?php esc_html_e('Last Name', 'paid-memberships-pro' );?></label>
<input id="blastname" name="blastname" type="text"
class="<?php echo pmpro_get_element_class( 'input', 'blastname' ); ?>" size="30" value="<?php echo esc_attr($blastname);?>" />
</div> <!-- end pmpro_checkout-field-blastname -->
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_checkout-field-baddress1', 'pmpro_checkout-field-baddress1' ); ?>">
<label for="baddress1"><?php esc_html_e('Address 1', 'paid-memberships-pro' );?></label>
<input id="baddress1" name="baddress1" type="text" class="<?php echo pmpro_get_element_class( 'input', 'baddress1' ); ?>" size="30" value="<?php echo esc_attr($baddress1);?>" />
</div> <!-- end pmpro_checkout-field-baddress1 -->
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_checkout-field-baddress2', 'pmpro_checkout-field-baddress2' ); ?>">
<label for="baddress2"><?php esc_html_e('Address 2', 'paid-memberships-pro' );?></label>
<input id="baddress2" name="baddress2" type="text" class="<?php echo pmpro_get_element_class( 'input', 'baddress2' ); ?>" size="30" value="<?php echo esc_attr($baddress2);?>" /> <small class="<?php echo pmpro_get_element_class( 'lite' ); ?>">(<?php esc_html_e('optional', 'paid-memberships-pro' );?>)</small>
</div> <!-- end pmpro_checkout-field-baddress2 -->
<?php
$longform_address = apply_filters("pmpro_longform_address", true);
if($longform_address)
{
?>
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_checkout-field-bcity', 'pmpro_checkout-field-bcity' ); ?>">
<label for="bcity"><?php esc_html_e('City', 'paid-memberships-pro' );?></label>
<input id="bcity" name="bcity" type="text" class="<?php echo pmpro_get_element_class( 'input', 'bcity' ); ?>" size="30" value="<?php echo esc_attr($bcity)?>" />
</div> <!-- end pmpro_checkout-field-bcity -->
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_checkout-field-bstate', 'pmpro_checkout-field-bstate' ); ?>">
<label for="bstate"><?php esc_html_e('State', 'paid-memberships-pro' );?></label>
<input id="bstate" name="bstate" type="text" class="<?php echo pmpro_get_element_class( 'input', 'bstate' ); ?>" size="30" value="<?php echo esc_attr($bstate)?>" />
</div> <!-- end pmpro_checkout-field-bstate -->
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_checkout-field-bzipcode', 'pmpro_checkout-field-bzipcode' ); ?>">
<label for="bzipcode"><?php esc_html_e('Postal Code', 'paid-memberships-pro' );?></label>
<input id="bzipcode" name="bzipcode" type="text" class="<?php echo pmpro_get_element_class( 'input', 'bzipcode' ); ?>" size="30" value="<?php echo esc_attr($bzipcode)?>" />
</div> <!-- end pmpro_checkout-field-bzipcode -->
<?php
}
else
{
?>
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_checkout-field-bcity_state_zip', 'pmpro_checkout-field-bcity_state_zip' ); ?>">
<label for="bcity_state_zip"><?php esc_html_e('City, State Zip', 'paid-memberships-pro' );?></label>
<input id="bcity" name="bcity" type="text" class="<?php echo pmpro_get_element_class( 'input', '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 id="bstate" name="bstate" class="<?php echo pmpro_get_element_class( '', '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 id="bstate" name="bstate" class="<?php echo pmpro_get_element_class( '', '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="<?php echo pmpro_get_element_class( 'input', 'bstate' ); ?>" size="2" value="<?php echo esc_attr($bstate)?>" />
<?php
}
?>
<input id="bzipcode" name="bzipcode" type="text" class="<?php echo pmpro_get_element_class( 'input', 'bzipcode' ); ?>" size="5" value="<?php echo esc_attr($bzipcode)?>" />
</div> <!-- end pmpro_checkout-field-bcity_state_zip -->
<?php
}
?>
<?php
$show_country = apply_filters("pmpro_international_addresses", true);
if($show_country)
{
?>
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_checkout-field-bcountry', 'pmpro_checkout-field-bcountry' ); ?>">
<label for="bcountry"><?php esc_html_e('Country', 'paid-memberships-pro' );?></label>
<select id="bcountry" name="bcountry" class="<?php echo pmpro_get_element_class( '', 'bcountry' );?>">
<?php
global $pmpro_countries, $pmpro_default_country;
foreach($pmpro_countries as $abbr => $country)
{
if(!$bcountry)
$bcountry = $pmpro_default_country;
?>
<option value="<?php echo esc_attr( $abbr ) ?>" <?php if($abbr === $bcountry) { ?>selected="selected"<?php } ?>><?php echo esc_html( $country ); ?></option>
<?php
}
?>
</select>
</div> <!-- end pmpro_checkout-field-bcountry -->
<?php
}
else
{
?>
<input type="hidden" id="bcountry" name="bcountry" value="US" />
<?php
}
?>
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_checkout-field-bphone', 'pmpro_checkout-field-bphone' ); ?>">
<label for="bphone"><?php esc_html_e('Phone', 'paid-memberships-pro' );?></label>
<input id="bphone" name="bphone" type="text" class="<?php echo pmpro_get_element_class( 'input', 'bphone' ); ?>" size="30" value="<?php echo esc_attr($bphone)?>" />
</div> <!-- end pmpro_checkout-field-bphone -->
<?php if($current_user->ID) { ?>
<?php
if(!$bemail && $current_user->user_email)
$bemail = $current_user->user_email;
if(!$bconfirmemail && $current_user->user_email)
$bconfirmemail = $current_user->user_email;
?>
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_checkout-field-bemail', 'pmpro_checkout-field-bemail' ); ?>">
<label for="bemail"><?php esc_html_e('Email Address', 'paid-memberships-pro' );?></label>
<input id="bemail" name="bemail" type="<?php echo ($pmpro_email_field_type ? 'email' : 'text'); ?>" class="<?php echo pmpro_get_element_class( 'input', 'bemail' ); ?>" size="30" value="<?php echo esc_attr($bemail)?>" />
</div> <!-- end pmpro_checkout-field-bemail -->
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_checkout-field-bconfirmemail', 'pmpro_checkout-field-bconfirmemail' ); ?>">
<label for="bconfirmemail"><?php esc_html_e('Confirm Email', 'paid-memberships-pro' );?></label>
<input id="bconfirmemail" name="bconfirmemail" type="<?php echo ($pmpro_email_field_type ? 'email' : 'text'); ?>" class="<?php echo pmpro_get_element_class( 'input', 'bconfirmemail' ); ?>" size="30" value="<?php echo esc_attr($bconfirmemail)?>" />
</div> <!-- end pmpro_checkout-field-bconfirmemail -->
<?php } ?>
</div> <!-- end pmpro_checkout-fields -->
</div> <!-- end pmpro_billing -->
<?php } ?>
<?php
//make sure gateways will show up credit card fields
global $pmpro_requirebilling;
$pmpro_requirebilling = true;
//do we need to show the payment information (credit card) fields? gateways will override this
$pmpro_include_payment_information_fields = apply_filters('pmpro_include_payment_information_fields', true);
if($pmpro_include_payment_information_fields)
{
$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);
?>
<div id="pmpro_payment_information_fields" class="<?php echo pmpro_get_element_class( 'pmpro_checkout', 'pmpro_payment_information_fields' ); ?>">
<h3>
<span class="<?php echo pmpro_get_element_class( 'pmpro_checkout-h3-name' ); ?>"><?php esc_html_e('Credit Card Information', 'paid-memberships-pro' );?></span>
<span class="<?php echo pmpro_get_element_class( 'pmpro_checkout-h3-msg' ); ?>"><?php printf( esc_html__('We accept %s', 'paid-memberships-pro' ), $pmpro_accepted_credit_cards_string ); ?></span>
</h3>
<?php $sslseal = pmpro_getOption("sslseal"); ?>
<?php if(!empty($sslseal)) { ?>
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-fields-display-seal' ); ?>">
<?php } ?>
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-fields' ); ?>">
<?php
$pmpro_include_cardtype_field = apply_filters('pmpro_include_cardtype_field', false);
if($pmpro_include_cardtype_field) { ?>
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_payment-card-type', 'pmpro_payment-card-type' ); ?>">
<label for="CardType"><?php esc_html_e('Card Type', 'paid-memberships-pro' );?></label>
<select id="CardType" name="CardType" class="<?php echo pmpro_get_element_class( '', 'CardType' );?>">
<?php foreach($pmpro_accepted_credit_cards as $cc) { ?>
<option value="<?php echo esc_attr( $cc ); ?>" <?php if($CardType === $cc) { ?>selected="selected"<?php } ?>><?php echo esc_html( $cc ); ?></option>
<?php } ?>
</select>
</div> <!-- end pmpro_payment-card-type -->
<?php } else { ?>
<input type="hidden" id="CardType" name="CardType" value="<?php echo esc_attr($CardType);?>" />
<script>
<!--
jQuery(document).ready(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');
});
});
-->
</script>
<?php
}
?>
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_payment-account-number', 'pmpro_payment-account-number' ); ?>">
<label for="AccountNumber"><?php esc_html_e('Card Number', 'paid-memberships-pro' );?></label>
<input id="AccountNumber" name="AccountNumber" class="<?php echo pmpro_get_element_class( 'input', 'AccountNumber' );?>" type="text" size="25" value="<?php echo esc_attr($AccountNumber)?>" autocomplete="off" />
</div>
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_payment-expiration', 'pmpro_payment-expiration' ); ?>">
<label for="ExpirationMonth"><?php esc_html_e('Expiration Date', 'paid-memberships-pro' );?></label>
<select id="ExpirationMonth" name="ExpirationMonth" class="<?php echo pmpro_get_element_class( '', '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_get_element_class( '', 'ExpirationYear' ); ?>">
<?php
for($i = date_i18n("Y"); $i < date_i18n("Y") + 10; $i++)
{
?>
<option value="<?php echo esc_attr( $i ) ?>" <?php if($ExpirationYear == $i) { ?>selected="selected"<?php } ?>><?php echo esc_html( $i ); ?></option>
<?php
}
?>
</select>
</div>
<?php
$pmpro_show_cvv = apply_filters("pmpro_show_cvv", true);
if($pmpro_show_cvv) {
if ( true == ini_get('allow_url_include') ) {
$cvv_template = pmpro_loadTemplate('popup-cvv', 'url', 'pages', 'html');
} else {
$cvv_template = plugins_url( 'paid-memberships-pro/pages/popup-cvv.html', PMPRO_DIR );
}
?>
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_payment-cvv', 'pmpro_payment-cvv' ); ?>">
<label for="CVV"><?php esc_html_e('CVV', 'paid-memberships-pro' );?></label>
<input id="CVV" name="CVV" type="text" size="4" value="<?php if(!empty($_REQUEST['CVV'])) { echo esc_attr( sanitize_text_field( $_REQUEST['CVV'] ) ); }?>" class="<?php echo pmpro_get_element_class( 'input', 'CVV ');?>" /> <small>(<a href="javascript:void(0);" onclick="javascript:window.open('<?php echo pmpro_https_filter($cvv_template); ?>','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?", 'paid-memberships-pro' );?></a>)</small>
</div>
<?php } ?>
</div> <!-- end pmpro_checkout-fields -->
</div> <!-- end pmpro_payment_information_fields -->
<?php
}
?>
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field pmpro_captcha', '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> <!-- end pmpro_captcha -->
<?php do_action("pmpro_billing_before_submit_button"); ?>
<div class="<?php echo pmpro_get_element_class( 'pmpro_submit' ); ?>">
<hr />
<input type="hidden" name="update-billing" value="1" />
<input type="submit" id="pmpro_btn-submit" class="<?php echo pmpro_get_element_class( 'pmpro_btn pmpro_btn-submit-checkout', 'pmpro_btn-submit-checkout' ); ?>" value="<?php esc_attr_e('Update', 'paid-memberships-pro' );?>" />
<input type="button" name="cancel" class="<?php echo pmpro_get_element_class( 'pmpro_btn pmpro_btn-cancel', 'pmpro_btn-cancel' ); ?>" value="<?php esc_attr_e('Cancel', 'paid-memberships-pro' );?>" onclick="location.href='<?php echo pmpro_url("account")?>';" />
</div>
</form>
<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');
});
-->
</script>
</div> <!-- end pmpro_level-ID -->
<?php } ?>
<?php } else { // End for recurring level check.
// Check to see if the user has a cancelled order
$order = new MemberOrder();
$order->getLastMemberOrder( $current_user->ID, array( 'cancelled', 'expired', 'admin_cancelled' ) );
if ( isset( $order->membership_id ) && ! empty( $order->membership_id ) && empty( $level->id ) ) {
$level = pmpro_getLevel( $order->membership_id );
// If no level check for a default level.
if ( empty( $level ) || ! $level->allow_signups ) {
$default_level_id = apply_filters( 'pmpro_default_level', 0 );
}
// Show the correct checkout link.
if ( ! empty( $level ) && ! empty( $level->allow_signups ) ) {
$url = pmpro_url( 'checkout', '?level=' . $level->id );
printf( __( "Your membership is not active. <a href='%s'>Renew now.</a>", 'paid-memberships-pro' ), $url );
} elseif ( ! empty( $default_level_id ) ) {
$url = pmpro_url( 'checkout', '?level=' . $default_level_id );
printf( __( "You do not have an active membership. <a href='%s'>Register here.</a>", 'paid-memberships-pro' ), $url );
} else {
$url = pmpro_url( 'levels' );
printf( __( "You do not have an active membership. <a href='%s'>Choose a membership level.</a>", 'paid-memberships-pro' ), esc_url( $url ) );
}
} else { ?>
<p><?php esc_html_e("This subscription is not recurring. So you don't need to update your billing information.", 'paid-memberships-pro' );?></p>
<?php }
} ?>
</div> <!-- end pmpro_billing_wrap -->