# formidable/5.4.4/classes/views/styles/_upsell-multiple-styles.php

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

- Page: https://pluginprobe.com/plugins/formidable/5.4.4/code/classes/views/styles/_upsell-multiple-styles.php
- Raw: https://pluginprobe.com/plugins/formidable/5.4.4/raw/classes/views/styles/_upsell-multiple-styles.php
- Modified: 2022-07-07T16:59:20+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.4.4/code/classes/views/styles/_upsell-multiple-styles.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<?php
$multiple_styles_title   = __( 'You are currently limited to 1 style template', 'formidable' );
$multiple_styles_message = __( 'Upgrade to create and manage as many form styles as you need.', 'formidable' );
?>
<a href="#" class="button button-secondary frm-button-secondary frm-with-plus frm_noallow" data-upgrade="<?php echo esc_attr( $multiple_styles_title ); ?>" data-message="<?php echo esc_attr( $multiple_styles_message ); ?>" data-image="styles-upsell.svg">
	<?php FrmAppHelper::icon_by_class( 'frmfont frm_plus_icon frm_svg15' ); ?>
	<?php esc_html_e( 'New Style', 'formidable' ); ?>
</a>
<a href="#" class="button button-secondary frm-button-secondary alignright frm_noallow" data-upgrade="<?php echo esc_attr( $multiple_styles_title ); ?>" data-message="<?php echo esc_attr( $multiple_styles_message ); ?>" data-image="styles-upsell.svg">
	<?php esc_html_e( 'Duplicate', 'formidable' ); ?>
</a>

```
