PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.1.7.1
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.1.7.1
4.4.8 4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 All 139 releases
learnpress / templates / checkout / guest-checkout.php

guest-checkout.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.1.7.1, at templates/checkout/guest-checkout.php

54 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Template for displaying user email field which enable checkout as guest.
4 *
5 * This template can be overridden by copying it to yourtheme/learnpress/checkout/guest-email.php.
6 *
7 * @author ThimPress
8 * @package Learnpress/Templates
9 * @version 4.0.0
10 */
11
12 defined( 'ABSPATH' ) || exit();
13
14 $checkout = LP()->checkout();
15 $is_exists = $checkout->checkout_email_exists();
16 ?>
17
18 <input type="radio" id="checkout-account-switch-to-guest" name="checkout-account-switch-form" value="guest" checked="checked"/>
19
20 <div id="checkout-account-guest" class="lp-checkout-block <?php echo esc_attr( $is_exists ? 'email-exists' : '' ); ?>">
21 <h4><?php esc_html_e( 'As Guest', 'learnpress' ); ?></h4>
22 <ul class="lp-form-fields">
23 <li class="form-field">
24 <input size="30" placeholder="<?php esc_attr_e( 'Enter your email...', 'learnpress' ); ?>" type="text" id="guest_email" name="guest_email" autocomplete="off">
25 <div class="lp-guest-checkout-notice">
26 <?php esc_html_e( 'An order key to activate the course will be sent to your email after the payment proceeded successfully.', 'learnpress' ); ?>
27 </div>
28
29 <?php
30 $signin = '';
31 $signup = '';
32 $divider = '';
33
34 if ( LP()->checkout()->is_enable_login() ) {
35 $signin = sprintf( '<a href="javascript:void(0)"><label for="checkout-account-switch-to-login">%s</label></a>', esc_html( _x( 'Sign in', 'checkout sign in link', 'learnpress' ) ) );
36 }
37
38 if ( LP()->checkout()->is_enable_login() && LP()->checkout()->is_enable_register() ) {
39 $divider = ',';
40 }
41
42 if ( LP()->checkout()->is_enable_register() ) {
43 $signup = sprintf( '<a href="javascript:void(0)"><label for="checkout-account-switch-to-register">%s</label></a>', esc_html( _x( 'Sign up', 'checkout sign up link', 'learnpress' ) ) );
44 }
45 ?>
46
47 <?php if ( LP()->checkout()->is_enable_login() || LP()->checkout()->is_enable_register() ) : ?>
48 <div class="lp-guest-switch-login"><?php echo sprintf( __( 'Or you can %1$s%2$s %3$s now.', 'learnpress' ), $signin, $divider, $signup ); ?></div>
49 <?php endif; ?>
50 </li>
51 </ul>
52 <input type="hidden" name="learn-press-checkout-nonce" value="<?php echo esc_attr( wp_create_nonce( 'learn-press-guest-checkout' ) ); ?>"/>
53 </div>
54