PluginProbe
Tutor LMS – eLearning and online course solution / 1.9.5
Tutor LMS – eLearning and online course solution v1.9.5
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 4.0.2 4.0.1 4.0.0 3.9.15 3.9.14 3.9.13 3.9.12 3.9.11 trunk 1.0.0 1.0.0-alpha 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 All 191 releases
tutor / templates / single / course / wc-price-html.php
wc-price-html.php
27 lines 464 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Template for displaying price
4 *
5 * @since v.1.0.0
6 *
7 * @author Themeum
8 * @url https://themeum.com
9 *
10 * @package TutorLMS/Templates
11 * @version 1.4.3
12 */
13
14
15 $is_purchasable = tutor_utils()->is_course_purchasable();
16 $price = apply_filters('get_tutor_course_price', null, get_the_ID());
17
18 if ($is_purchasable && $price){
19 echo '<div class="price">'.$price.'</div>';
20 }else{
21 ?>
22 <div class="price">
23 <?php _e('Free', 'tutor'); ?>
24 </div>
25 <?php
26 }
27 ?>