# formidable/5.2/classes/views/frm-settings/settings_cta.php

Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes &amp; More, version 5.2. 43 lines.

- Page: https://pluginprobe.com/plugins/formidable/5.2/code/classes/views/frm-settings/settings_cta.php
- Raw: https://pluginprobe.com/plugins/formidable/5.2/raw/classes/views/frm-settings/settings_cta.php
- Modified: 2021-04-07T18:11:40+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/formidable/5.2/code/classes/views/frm-settings/settings_cta.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<div class="settings-lite-cta" id="frm-dismissable-cta">
		<div class="postbox" style="border:none;">
			<div class="inside">

				<a href="#" class="dismiss alignright" title="<?php esc_attr_e( 'Dismiss this message', 'formidable' ); ?>">
					<?php FrmAppHelper::icon_by_class( 'frmfont frm_close_icon', array( 'aria-label' => 'Dismiss' ) ); ?>
				</a>
				<h2><?php esc_html_e( 'Get Formidable Forms Pro and Unlock all the Powerful Features', 'formidable' ); ?></h2>
				<div class="cta-inside">
					<p><?php esc_html_e( 'Thanks for being a loyal Formidable Forms user. Upgrade to Formidable Forms Pro to unlock all the awesome features and learn how others are defying the limits by taking on big projects without big resources.', 'formidable' ); ?></p>
					<p>
						<?php esc_html_e( 'We know that you will truly love Formidable Forms.', 'formidable' ); ?>
					</p>
					<br/>
					<h3><?php esc_html_e( 'Pro Features', 'formidable' ); ?></h3>
					<ul class="frm_two_col frm-green-icons">
						<?php foreach ( $features as $feature ) { ?>
							<li>
								<?php FrmAppHelper::icon_by_class( 'frmfont frm_checkmark_icon', array( 'aria-hidden' => 'true' ) ); ?>
								<?php echo esc_html( $feature ); ?>
							</li>
						<?php } ?>
					</ul>
					<div class="clear"></div>

					<p>
						<a href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( 'settings-upgrade' ) ); ?>" target="_blank" rel="noopener noreferrer">
							<?php esc_html_e( 'Get Formidable Forms Pro Today and Unlock all the Powerful Features »', 'formidable' ); ?>
						</a>
					</p>
					<p>
						<strong>Bonus:</strong> Formidable Forms Lite users get <a href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( 'settings-upgrade-bonus' ) ); ?>" target="_blank" rel="noopener noreferrer" class="frm_green">50% off regular price</a>, automatically applied at checkout.
					</p>
				</div>
			</div>
		</div>
</div>

```
