# subscription/1.10.1/includes/Admin/views/required-notice.php

Subscriptions for WooCommerce with Stripe Recurring Payments, version 1.10.1. 36 lines.

- Page: https://pluginprobe.com/plugins/subscription/1.10.1/code/includes/Admin/views/required-notice.php
- Raw: https://pluginprobe.com/plugins/subscription/1.10.1/raw/includes/Admin/views/required-notice.php
- Modified: 2026-03-30T08:58:52+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/subscription/1.10.1/code/includes/Admin/views/required-notice.php#L10-L20`.

```php
<?php
/**
 * WooCommerce dependency notice.
 *
 * @package SpringDevs\Subscription
 */

/*
STYLE GUIDE FOR WP SUBSCRIPTION ADMIN PAGES:
- Use .wp-subscription-admin-content for main content area.
- Use .wp-subscription-admin-box for white card/box with shadow and 6-8px border-radius.
- Use compact, modern, visually unified design for all sections.
- Use Georgia, serif for titles, system sans-serif for body.
- All new UI/UX changes must follow these conventions.
*/

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
?>
<div class="notice notice-error sdevs-install-plugin">
	<div class="sdevs-notice-icon">
		<img src="<?php echo esc_url( SUBSCRPT_ASSETS . '/images/logo.png' ); ?>" alt="woocommerce-logo" />
	</div>
	<div class="sdevs-notice-content">
		<h2><?php esc_html_e( 'Thanks for using Subscription for WooCommerce', 'subscription' ); ?></h2>
		<p>You must have <a href="https://wordpress.org/plugins/woocommerce/" target="_blank">Woocommerce </a> installed and activated on this website in order to use this plugin.</p>
	</div>
	<div class="sdevs-install-notice-button">
		<a class="button-primary <?php echo esc_attr( $id ); ?>" href="javascript:void(0);"><svg xmlns="http://www.w3.org/2000/svg" class="sdevs-loading-icon" fill="none" viewBox="0 0 24 24" stroke="currentColor">
				<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15" />
			</svg> <?php echo esc_html( $label ); ?></a>
	</div>
</div>

```
