PluginProbe
Tiered Pricing Table for WooCommerce / 6.1.0
Tiered Pricing Table for WooCommerce v6.1.0
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 6.1.0, at views/admin/alerts/premium-thanking-alert.php

32 lines 773 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 /**
6 * Available variables
7 *
8 * @var string $accountUrl
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( 'You are running premium version of the plugin!', 'tier-pricing-table' );
18 ?>
19 </div>
20 </div>
21
22 <div class="tpt-alert__buttons">
23 <div class="tpt-alert__inner">
24 <a class="tpt-button tpt-button--accent" href="<?php echo esc_attr( $accountUrl ); ?>">
25 <?php esc_html_e( 'My Account', 'tier-pricing-table' ); ?>
26 </a>
27 <a class="tpt-button tpt-button--default" href="<?php echo esc_attr( $contactUsUrl ); ?>">
28 <?php esc_html_e( 'Contact us', 'tier-pricing-table' ); ?>
29 </a>
30 </div>
31 </div>
32 </div>