%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/themes/eduma/learnpress-v1/order/ |
Current File : /var/www/html/ceaa/wp-content/themes/eduma/learnpress-v1/order/confirm.php |
<?php /** * @author ThimPress * @package LearnPress/Templates * @version 1.0 */ defined( 'ABSPATH' ) || exit(); ?> <?php if ( $order ) : ?> <?php if ( $order->has_status( 'failed' ) ) : ?> <p><?php _e( 'Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction.', 'eduma' ); ?></p> <p><?php if ( is_user_logged_in() ) _e( 'Please attempt your purchase again or go to your account page.', 'eduma' ); else _e( 'Please attempt your purchase again.', 'eduma' ); ?></p> <p> <a href="<?php echo esc_url( $order->get_checkout_payment_url() ); ?>" class="button pay"><?php _e( 'Pay', 'eduma' ) ?></a> <?php if ( is_user_logged_in() ) : ?> <a href="<?php echo esc_url( get__permalink( 'myaccount' ) ); ?>" class="button pay"><?php _e( 'My Account', 'eduma' ); ?></a> <?php endif; ?> </p> <?php else : ?> <p><?php echo apply_filters( 'learn_press_confirm_order_received_text', __( 'Thank you. Your order has been received.', 'eduma' ), $order ); ?></p> <ul class="order_details"> <li class="order"> <?php _e( 'Order Number:', 'eduma' ); ?> <strong><?php echo $order->get_order_number(); ?></strong> </li> <li class="date"> <?php _e( 'Date:', 'eduma' ); ?> <strong><?php echo date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) ); ?></strong> </li> <li class="total"> <?php _e( 'Total:', 'eduma' ); ?> <strong><?php echo $order->get_formatted_order_total(); ?></strong> </li> <?php if ( $payment_method_title = $order->get_payment_method_title() ) : ?> <li class="method"> <?php _e( 'Payment Method:', 'eduma' ); ?> <strong><?php echo $payment_method_title; ?></strong> </li> <?php endif; ?> <li class="status"> <?php _e( 'Status:', 'eduma' ); ?> <strong><?php echo $order->get_status(); ?></strong> </li> </ul> <div class="clear"></div> <?php endif; ?> <?php do_action( 'learn_press_confirm_order' . $order->transaction_method, $order->id ); ?> <?php do_action( 'learn_press_confirm_order', $order->id ); ?> <?php else : ?> <p><?php echo apply_filters( 'learn_press_confirm_order_received_text', __( 'Thank you. Your order has been received.', 'eduma' ), null ); ?></p> <?php endif; ?>