%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/plugins/learnpress/templates/order/ |
Current File : /var/www/html/ceaa/wp-content/plugins/learnpress/templates/order/confirm.php |
<?php /** * Template for displaying confirm message after order is placed. * * This template can be overridden by copying it to yourtheme/learnpress/order/confirm.php. * * @author ThimPress * @package Learnpress/Templates * @version 3.0.0 */ /** * Prevent loading this file directly */ defined( 'ABSPATH' ) || exit(); if ( ! isset( $order ) ) { $order = learn_press_get_order(); } ?> <?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.', 'learnpress' ); ?></p> <p> <?php if ( is_user_logged_in() ) { _e( 'Please attempt your purchase again or go to your account page.', 'learnpress' ); } else { _e( 'Please attempt your purchase again.', 'learnpress' ); } ?> </p> <?php } else { ?> <?php if ( false !== ( $confirm_text = $order->get_confirm_order_received_text() ) ) { ?> <p class="confirm-order-received-text"><?php echo $confirm_text; ?></p> <?php } ?> <?php // @since 3.0.0 do_action( 'learn-press/before-confirm-order-details', $order->get_id() ); ?> <ul class="order_details"> <li class="order"> <?php _e( 'Order Number:', 'learnpress' ); ?> <strong><?php echo $order->get_order_number(); ?></strong> </li> <li class="date"> <?php _e( 'Date:', 'learnpress' ); ?> <strong><?php echo date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) ); ?></strong> </li> <li class="total"> <?php _e( 'Total:', 'learnpress' ); ?> <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:', 'learnpress' ); ?> <strong><?php echo $payment_method_title; ?></strong> </li> <?php endif; ?> <li class="status"> <?php _e( 'Status:', 'learnpress' ); ?> <strong><?php echo $order->get_status(); ?></strong> </li> </ul> <?php // @since 3.0.0 do_action( 'learn-press/after-confirm-order-details', $order->get_id() ); ?> <?php } ?> <?php do_action( 'learn_press_confirm_order' . $order->transaction_method, $order->get_id() ); ?> <?php do_action( 'learn_press_confirm_order', $order->get_id() ); ?> <?php } else { ?> <p><?php echo $order->get_thankyou_message(); ?></p> <?php } ?>