[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.191.103.29: ~ $
<?php
/**
 * Template for displaying price of single course.
 *
 * This template can be overridden by copying it to yourtheme/learnpress/single-course/price.php.
 *
 * @author   ThimPress
 * @package  Learnpress/Templates
 * @version  3.0.0
 */

/**
 * Prevent loading this file directly
 */
defined( 'ABSPATH' ) || exit();

$user   = LP_Global::user();
$course = LP_Global::course();
if ( ! $course || ! $user ) {
	return;
}

$class = '';
$class .= ( $course->has_sale_price() ) ? ' has-origin' : '';
if ( $course->is_free() ) {
    $class .= ' free-course';
}

if ( ! $price = $course->get_price_html() ) {
	return;
}
?>

<div class="course-price">

    <div class="value <?php echo $class;?>">

        <?php if ( $course->has_sale_price() ) { ?>

            <span class="course-origin-price"> <?php echo $course->get_origin_price_html(); ?></span>

        <?php } ?>

        <?php echo $price; ?>

    </div>

</div>


Filemanager

Name Type Size Permission Actions
buttons Folder 0755
content-item Folder 0755
section Folder 0755
tabs Folder 0755
buttons.php File 693 B 0644
categories.php File 767 B 0644
content-item-lp_quiz.php File 996 B 0644
content-landing.php File 774 B 0644
content-single-item.php File 805 B 0644
instructor.php File 738 B 0644
price.php File 925 B 0644
progress.php File 2.78 KB 0644
remaining-time.php File 587 B 0644
thumbnail.php File 1.8 KB 0644