# jetpack/7.6.2/modules/widgets/simple-payments/admin-warning.php

Jetpack – WP Security, Backup, Speed, &amp; Growth, version 7.6.2. 17 lines.

- Page: https://pluginprobe.com/plugins/jetpack/7.6.2/code/modules/widgets/simple-payments/admin-warning.php
- Raw: https://pluginprobe.com/plugins/jetpack/7.6.2/raw/modules/widgets/simple-payments/admin-warning.php
- Modified: 2018-08-01T00:06:56+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/jetpack/7.6.2/code/modules/widgets/simple-payments/admin-warning.php#L10-L20`.

```php
<div class='jetpack-simple-payments-disabled-error'>
	<p>
		<?php
			$support_url = ( defined( 'IS_WPCOM' ) && IS_WPCOM )
				? 'https://support.wordpress.com/simple-payments/'
				: 'https://jetpack.com/support/simple-payment-button/';
			printf(
				wp_kses(
					__( 'Your plan doesn\'t include Simple Payments. <a href="%s" rel="noopener noreferrer" target="_blank">Learn more and upgrade</a>.', 'jetpack' ),
					array( 'a' => array( 'href' => array(), 'rel' => array(), 'target' => array() ) )
				),
				esc_url( $support_url )
			);
		?>
	</p>
</div>

```
