File: /home/wwwrenee/public_html/wp-content/plugins/learnpress/templates/checkout/review-order.php
<?php
/**
* Template for displaying reviewing before placing order.
*
* This template can be overridden by copying it to yourtheme/learnpress/checkout/review-order.php.
*
* @author ThimPress
* @package Learnpress/Templates
* @version 4.0.1
*/
defined( 'ABSPATH' ) || exit();
// $cart = learn_press_get_checkout_cart();
/**
* @var LP_Cart $cart
*/
if ( ! isset( $cart ) || ! $cart ) {
return;
}
?>
<div id="checkout-order" class="lp-checkout-block right">
<h4><?php esc_html_e( 'Your order', 'learnpress' ); ?></h4>
<div class="lp-checkout-order__inner">
<table>
<tbody>
<?php
do_action( 'learn_press_review_order_before_cart_contents' );
do_action( 'learn-press/review-order/before-cart-contents' );
$items = $cart->get_items();
if ( $items ) {
foreach ( $items as $cart_item_key => $cart_item ) {
$cart_item = apply_filters( 'learn-press/review-order/cart-item', $cart_item );
$item_id = $cart_item['item_id'];
$_course = apply_filters( 'learn-press/review-order/cart-item-product', learn_press_get_course( $item_id ), $cart_item );
if ( $_course && 0 < $cart_item['quantity'] ) {
?>
<tr class="<?php echo esc_attr( apply_filters( 'learn-press/review-order/cart-item-class', 'cart-item', $cart_item, $cart_item_key ) ); ?>">
<?php
do_action( 'learn_press_review_order_before_cart_item', $cart_item );
do_action( 'learn-press/review-order/before-cart-item', $cart_item, $cart_item_key );
?>
<td class="course-thumbnail">
<?php echo wp_kses_post( $_course->get_image() ); ?>
</td>
<td class="course-name">
<a href="<?php echo esc_url_raw( apply_filters( 'learn-press/review-order/cart-item-link', get_the_permalink( $item_id ), $cart_item ) ); ?>">
<?php echo wp_kses_post( apply_filters( 'learn-press/review-order/cart-item-name', $_course->get_title(), $cart_item, $cart_item_key ) ); ?>
</a>
<?php
if ( $cart_item['quantity'] > 1 ) {
echo wp_kses_post( apply_filters( 'learn-press/review-order/cart-item-quantity', ' <strong class="course-quantity">' . sprintf( '× %s', $cart_item['quantity'] ) . '</strong>', $cart_item, $cart_item_key ) );
}
?>
</td>
<td class="course-total col-number">
<?php echo esc_html( apply_filters( 'learn-press/review-order/cart-item-subtotal', $cart->get_item_subtotal( $_course, $cart_item['quantity'] ), $cart_item, $cart_item_key ) ); ?>
</td>
<?php
do_action( 'learn-press/review-order/after-cart-item', $cart_item, $cart_item_key );
do_action( 'learn_press_review_order_after_cart_item', $cart_item );
?>
</tr>
<?php
}
}
}
do_action( 'learn-press/review-order/after-cart-contents' );
do_action( 'learn_press_review_order_after_cart_contents' );
?>
</tbody>
<tfoot>
<tr class="cart-subtotal">
<?php do_action( 'learn-press/review-order/before-subtotal-row' ); ?>
<th colspan="2"><?php _e( 'Subtotal', 'learnpress' ); ?></th>
<td class="col-number"><?php echo esc_html( $cart->get_subtotal() ); ?></td>
<?php do_action( 'learn-press/review-order/after-subtotal-row' ); ?>
</tr>
<?php
do_action( 'learn_press_review_order_before_order_total' );
do_action( 'learn-press/review-order/before-order-total' );
?>
<tr class="order-total">
<?php do_action( 'learn-press/review-order/before-total-row' ); ?>
<th colspan="2"><?php esc_html_e( 'Total', 'learnpress' ); ?></th>
<td class="col-number"><?php echo esc_html( $cart->get_total() ); ?></td>
<?php do_action( 'learn-press/review-order/after-total-row' ); ?>
</tr>
<?php
do_action( 'learn-press/review-order/after-order-total' );
do_action( 'learn_press_review_order_after_order_total' );
?>
</tfoot>
</table>
</div>
</div>