# tier-pricing-table/2.3.3/views/admin/alerts/premium-thanking-alert.php

Tiered Pricing Table for WooCommerce, version 2.3.3. 26 lines.

- Page: https://pluginprobe.com/plugins/tier-pricing-table/2.3.3/code/views/admin/alerts/premium-thanking-alert.php
- Raw: https://pluginprobe.com/plugins/tier-pricing-table/2.3.3/raw/views/admin/alerts/premium-thanking-alert.php
- Modified: 2019-11-27T09:55:58+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/tier-pricing-table/2.3.3/code/views/admin/alerts/premium-thanking-alert.php#L10-L20`.

```php
<?php if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
/**
 * @var string $accountUrl
 * @var string $contactUsUrl
 */
?>
<div class="tpt-alert">

    <div class="tpt-alert__text">
        <div class="tpt-alert__inner">
            <?php
                _e( 'Thanks! You are using premium version of the plugin!', 'tier-pricing-table' );
            ?>
        </div>
    </div>

    <div class="tpt-alert__buttons">
        <div class="tpt-alert__inner">
            <a class="tpt-button tpt-button--accent" href="<?php echo $accountUrl; ?>"><?php _e( 'My Account',
			        'tier-pricing-table' ); ?></a>
            <a class="tpt-button tpt-button--default" href="<?php echo $contactUsUrl; ?>"><?php _e( 'Contact us', 'tier-pricing-table' ); ?></a>
        </div>
    </div>
</div>
```
