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.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 4.2.1 All 138 releases
learnpress / inc / admin / views / setup / steps / finish.php

finish.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.3.8, at inc/admin/views/setup/steps/finish.php

35 lines 980 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 finish step.
4 *
5 * @author ThimPres
6 * @package LearnPress/Admin/Views
7 * @version 3.0.0
8 */
9
10 defined( 'ABSPATH' ) or exit;
11 ?>
12 <h2><?php _e( 'Finish', 'learnpress' ); ?></h2>
13
14 <p><?php _e( 'LearnPress LMS is ready to go!', 'learnpress' ); ?></p>
15
16 <p class="finish-buttons">
17 <a class="button"
18 id="install-sample-course"
19 href="<?php echo esc_url_raw( admin_url( 'admin.php?page=learn-press-tools' ) ); ?>">
20 <?php _e( 'Install a demo course', 'learnpress' ); ?>
21 </a>
22
23 <a class="button" href="<?php echo LearnPress::$doc_link; ?>">
24 <?php _e( 'View Documentation', 'learnpress' ); ?>
25 </a>
26
27 <a class="button" href="<?php echo esc_url_raw( admin_url( 'post-new.php?post_type=lp_course' ) ); ?>">
28 <?php _e( 'Create a new course', 'learnpress' ); ?>
29 </a>
30
31 <a class="button" href="<?php echo esc_url_raw( admin_url( 'index.php' ) ); ?>">
32 <?php _e( 'Back to Dashboard', 'learnpress' ); ?>
33 </a>
34 </p>
35