| 1 |
<?php if ( ! defined( 'ABSPATH' ) ) { |
| 2 |
exit; |
| 3 |
} |
| 4 |
/** |
| 5 |
* @var string $accountUrl |
| 6 |
* @var string $contactUsUrl |
| 7 |
*/ |
| 8 |
?> |
| 9 |
<div class="tpt-alert"> |
| 10 |
|
| 11 |
<div class="tpt-alert__text"> |
| 12 |
<div class="tpt-alert__inner"> |
| 13 |
<?php |
| 14 |
_e( 'Thanks! You are using premium version of the plugin!', 'tier-pricing-table' ); |
| 15 |
?> |
| 16 |
</div> |
| 17 |
</div> |
| 18 |
|
| 19 |
<div class="tpt-alert__buttons"> |
| 20 |
<div class="tpt-alert__inner"> |
| 21 |
<a class="tpt-button tpt-button--accent" href="<?php echo $accountUrl; ?>"><?php _e( 'My Account', |
| 22 |
'tier-pricing-table' ); ?></a> |
| 23 |
<a class="tpt-button tpt-button--default" href="<?php echo $contactUsUrl; ?>"><?php _e( 'Contact us', 'tier-pricing-table' ); ?></a> |
| 24 |
</div> |
| 25 |
</div> |
| 26 |
</div> |