# learnpress/4.3.9/inc/admin/views/tools/subscription-button.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.3.9. 23 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.3.9/code/inc/admin/views/tools/subscription-button.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.3.9/raw/inc/admin/views/tools/subscription-button.php
- Modified: 2026-06-08T02:53:42+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.9/code/inc/admin/views/tools/subscription-button.php#L10-L20`.

```php
<?php
/**
 * Template for displaying Newsletter button.
 *
 * @author  ThimPress
 * @package LearnPress/Admin/Views
 * @version 3.0.10
 */

defined( 'ABSPATH' ) || die();
?>

<div class="lp-notice notice notice-warning" id="learn-press-newsletter-button">
	<p>
		<strong><?php echo __( 'If you don\'t want to miss exclussive offers from us, join our newsletter.', 'learnpress' ); ?></strong>
	</p>
	<p>
		<a class="button button-primary lp-button-newsletter" data-dismiss-notice="newsletter-button"
		   data-context="newsletter"><?php echo __( 'Sure! I want to get the latest news.', 'learnpress' ); ?></a>
	</p>
	<button class="notice-dismiss" data-dismiss-notice="newsletter-button"></button>
</div>

```
