| 1 |
<?php if ( ! defined( 'ABSPATH' ) ) { |
| 2 |
exit; |
| 3 |
} |
| 4 |
|
| 5 |
/** |
| 6 |
* Available variables |
| 7 |
* |
| 8 |
* @var bool $is_product |
| 9 |
*/ |
| 10 |
$is_product = isset( $is_product ) ? $is_product : false; |
| 11 |
?> |
| 12 |
|
| 13 |
<div class="tpt-alert <?php echo esc_attr( $is_product ? 'tpt-alert--compact' : '' ); ?>"> |
| 14 |
<div class="tpt-alert__text"> |
| 15 |
<div class="tpt-alert__inner"> |
| 16 |
<span class="tpt-badge tpt-badge--free"><?php esc_html_e( 'Free Version', 'tier-pricing-table' ); ?></span> |
| 17 |
<strong style="margin-left: 6px;"> |
| 18 |
<?php |
| 19 |
esc_html_e( 'Premium License Available', |
| 20 |
'tier-pricing-table' ); |
| 21 |
?> |
| 22 |
</strong> |
| 23 |
— |
| 24 |
<span style="font-weight: normal; font-size: 13px;"> |
| 25 |
<?php |
| 26 |
echo wp_kses_post( __( 'You are currently running the free version. Download the Pro version from your <a href="' . esc_url( tpt_fs()->get_account_url() ) . '">account</a> or purchase receipt.', |
| 27 |
'tier-pricing-table' ) ); |
| 28 |
?> |
| 29 |
</span> |
| 30 |
</div> |
| 31 |
</div> |
| 32 |
</div> |
| 33 |
|