PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.3.8
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.3.8
4.4.8 4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 All 139 releases
learnpress / templates / global / lp-group-step.php

lp-group-step.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.3.8, at templates/global/lp-group-step.php

38 lines 911 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Template for Step item.
4 *
5 * This template for js read and render each item.
6 * Purpose:
7 * 1. Define struct template group step
8 * 2. On js will read ".example-lp-item-step" and clone content ".lp-item-step"
9 * 3. Js will render data to template have just clone, and append to ".lp-group-step"
10 *
11 * @author tungnx
12 * @package Learnpress/Templates
13 * @version 1.0.0
14 * @since 4.0.3
15 */
16
17 ?>
18
19 <div class="example-lp-group-step">
20 <div class="lp-group-step">
21 </div>
22 <div class="example-lp-item-step">
23 <h3></h3>
24 <div class="lp-item-step">
25 <div class="lp-item-step-left">
26 <input type="hidden" name="" value="" />
27 </div>
28 <div class="lp-item-step-right">
29 <label for=""><strong></strong></label>
30 <div class="description"></div>
31 <div class="percent"></div>
32 <span class="progress-bar"></span>
33 </div>
34 </div>
35 </div>
36 </div>
37
38