# learnpress/4.3.7/inc/admin/views/setup/steps/finish.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.3.7. 35 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.3.7/code/inc/admin/views/setup/steps/finish.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.3.7/raw/inc/admin/views/setup/steps/finish.php
- Modified: 2026-05-23T18:20:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.3.7/code/inc/admin/views/setup/steps/finish.php#L10-L20`.

```php
<?php
/**
 * Template for displaying finish step.
 *
 * @author  ThimPres
 * @package LearnPress/Admin/Views
 * @version 3.0.0
 */

defined( 'ABSPATH' ) or exit;
?>
<h2><?php _e( 'Finish', 'learnpress' ); ?></h2>

<p><?php _e( 'LearnPress LMS is ready to go!', 'learnpress' ); ?></p>

<p class="finish-buttons">
	<a class="button"
		id="install-sample-course"
		href="<?php echo esc_url_raw( admin_url( 'admin.php?page=learn-press-tools' ) ); ?>">
		<?php _e( 'Install a demo course', 'learnpress' ); ?>
	</a>

	<a class="button" href="<?php echo LearnPress::$doc_link; ?>">
		<?php _e( 'View Documentation', 'learnpress' ); ?>
	</a>

	<a class="button" href="<?php echo esc_url_raw( admin_url( 'post-new.php?post_type=lp_course' ) ); ?>">
		<?php _e( 'Create a new course', 'learnpress' ); ?>
	</a>

	<a class="button" href="<?php echo esc_url_raw( admin_url( 'index.php' ) ); ?>">
		<?php _e( 'Back to Dashboard', 'learnpress' ); ?>
	</a>
</p>

```
