PluginProbe
Tiered Pricing Table for WooCommerce / 2.3.3
Tiered Pricing Table for WooCommerce v2.3.3
8.0.2 7.1.7 7.1.5 7.1.4 7.1.1 6.5.0 6.4.0 6.1.0 trunk 1.0 1.1 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.3.0 2.3.1 2.3.2 2.3.3 All 91 releases
tier-pricing-table / views / admin / alerts / premium-thanking-alert.php

premium-thanking-alert.php in Tiered Pricing Table for WooCommerce 2.3.3, at views/admin/alerts/premium-thanking-alert.php

26 lines 778 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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>