| 1 |
<?php if ( ! defined( 'ABSPATH' ) ) { |
| 2 |
exit; |
| 3 |
} |
| 4 |
|
| 5 |
/** |
| 6 |
* Available variables |
| 7 |
* |
| 8 |
* @var string $upgradeUrl |
| 9 |
* @var string $contactUsUrl |
| 10 |
*/ |
| 11 |
?> |
| 12 |
<div class="tpt-alert"> |
| 13 |
|
| 14 |
<div class="tpt-alert__text"> |
| 15 |
<div class="tpt-alert__inner"> |
| 16 |
<?php |
| 17 |
esc_html_e( 'Upgrade your plan to unlock the great premium features.', 'tier-pricing-table' ); |
| 18 |
?> |
| 19 |
</div> |
| 20 |
</div> |
| 21 |
|
| 22 |
<div class="tpt-alert__buttons"> |
| 23 |
<div class="tpt-alert__inner"> |
| 24 |
|
| 25 |
<a class="tpt-button tpt-button--accent tpt-button--bounce" target="_blank" |
| 26 |
href="<?php echo esc_attr( $upgradeUrl ); ?>"> |
| 27 |
<?php esc_html_e( 'Upgrade to Premium!', 'tier-pricing-table' ); ?> |
| 28 |
</a> |
| 29 |
|
| 30 |
<span style="font-weight: bold; color: #646970"> - or -</span> |
| 31 |
|
| 32 |
<a target="_blank" class="tpt-button tpt-button--secondary" |
| 33 |
href="<?php echo esc_attr( tpt_fs()->get_trial_url() ); ?>"> |
| 34 |
<?php esc_html_e( 'Try trial', 'tier-pricing-table' ); ?> |
| 35 |
</a> |
| 36 |
|
| 37 |
<a target="_blank" class="tpt-button tpt-button--default" href="<?php echo esc_attr( $contactUsUrl ); ?>"> |
| 38 |
<?php esc_html_e( 'Contact Us!', 'tier-pricing-table' ); ?> |
| 39 |
</a> |
| 40 |
</div> |
| 41 |
</div> |
| 42 |
</div> |