HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/epamokos.kaunokolegija.lt/wp-content/plugins/lifterlms/templates/checkout/form-summary.php
<?php
/**
 * Order Summary area of the checkout form
 *
 * @since     2.4.2
 * @version   3.21.1
 */
defined( 'ABSPATH' ) || exit;
?>
<ul class="llms-order-summary<?php echo $plan->is_on_sale() ? ' on-sale' : ''; ?><?php echo $coupon ? ' has-coupon' : ''; ?>">
	<li><span class="llms-label"><?php echo esc_html( $product->get_post_type_label( 'singular_name' ) ); ?>:</span> <?php echo esc_html( $product->get( 'title' ) ); ?></li>
	<li><span class="llms-label"><?php esc_html_e( 'Access Plan', 'lifterlms' ); ?>:</span> <?php echo esc_html( $plan->get( 'title' ) ); ?></li>
	<?php if ( $plan->has_trial() ) : ?>
		<li class="llms-pricing llms-pricing-trial<?php echo ( $coupon && $coupon->has_trial_discount() ) ? ' has-coupon' : ''; ?>">
			<span class="llms-label"><?php esc_html_e( 'Trial', 'lifterlms' ); ?>:</span>
			<span class="price-regular price-trial"><?php echo wp_kses( $plan->get_price( 'trial_price' ), LLMS_ALLOWED_HTML_PRICES ); ?></span>
			<?php if ( $coupon && $coupon->has_trial_discount() ) : ?>
				<span class="price-coupon"><?php echo wp_kses( $plan->get_price_with_coupon( 'trial_price', $coupon ), LLMS_ALLOWED_HTML_PRICES ); ?></span>
			<?php endif; ?>
			<?php echo esc_html( $plan->get_trial_details() ); ?>
		</li>
	<?php endif; ?>
	<li class="llms-pricing llms-pricing-main<?php echo $plan->is_on_sale() ? ' on-sale' : ''; ?><?php echo ( $coupon && $coupon->has_main_discount() ) ? ' has-coupon' : ''; ?>">
		<span class="llms-label"><?php esc_html_e( 'Terms', 'lifterlms' ); ?>:</span>
		<span class="price-regular"><?php echo wp_kses( $plan->get_price( 'price' ), LLMS_ALLOWED_HTML_PRICES ); ?></span>
		<?php if ( $coupon && $coupon->has_main_discount() ) : ?>
			<span class="price-coupon"><?php echo wp_kses( $plan->get_price_with_coupon( $plan->is_on_sale() ? 'sale_price' : 'price', $coupon ), LLMS_ALLOWED_HTML_PRICES ); ?></span>
		<?php else : ?>
			<?php if ( $plan->is_on_sale() ) : ?>
				<span class="price-sale"><?php echo wp_kses( $plan->get_price( 'sale_price' ), LLMS_ALLOWED_HTML_PRICES ); ?></span>
			<?php endif; ?>
		<?php endif; ?>
		<?php
		$schedule = $plan->get_schedule_details();
		if ( $schedule ) :
			?>
			<?php echo esc_html( $schedule ); ?>
		<?php endif; ?>
	</li>
	<?php
	$expires = $plan->get_expiration_details();
	if ( $expires ) :
		?>
		<li><span class="llms-label"><?php esc_html_e( 'Access', 'lifterlms' ); ?>:</span> <?php echo esc_html( $expires ); ?></li>
	<?php endif; ?>
	<?php
		/**
		 * Action hook fired at the end of the checkout Order Summary area.
		 */
		do_action( 'llms_checkout_order_summary_end', $plan, $product, $coupon );
	?>
</ul>