# convertkit/3.4.3/views/frontend/restrict-content/product.php

Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages, version 3.4.3. 30 lines.

- Page: https://pluginprobe.com/plugins/convertkit/3.4.3/code/views/frontend/restrict-content/product.php
- Raw: https://pluginprobe.com/plugins/convertkit/3.4.3/raw/views/frontend/restrict-content/product.php
- Modified: 2026-07-20T08:40:12+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/convertkit/3.4.3/code/views/frontend/restrict-content/product.php#L10-L20`.

```php
<?php
/**
 * Outputs the restricted content message,
 * and a form for the subscriber to enter their
 * email address if they've already subscribed
 * to the Kit Product.
 *
 * @package ConvertKit
 * @author ConvertKit
 */

?>

<div id="convertkit-restrict-content">
	<?php
	require 'header.php';

	// Output product button, if specified.
	if ( isset( $button ) ) {
		echo wp_kses( $button, convertkit_kses_allowed_html() );
	}

	// Output a login link or form.
	require 'login.php';

	// Output notices.
	require 'notices.php';
	?>
</div>

```
