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 / upgrade-alert.php

upgrade-alert.php in Tiered Pricing Table for WooCommerce 6.1.0, at views/admin/alerts/upgrade-alert.php

42 lines 1.1 KB
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 $upgradeUrl
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( 'Upgrade your plan to unlock the great premium features.', 'tier-pricing-table' );
18 ?>
19 </div>
20 </div>
21
22 <div class="tpt-alert__buttons">
23 <div class="tpt-alert__inner">
24
25 <a class="tpt-button tpt-button--accent tpt-button--bounce" target="_blank"
26 href="<?php echo esc_attr( $upgradeUrl ); ?>">
27 <?php esc_html_e( 'Upgrade to Premium!', 'tier-pricing-table' ); ?>
28 </a>
29
30 <span style="font-weight: bold; color: #646970"> - or -</span>
31
32 <a target="_blank" class="tpt-button tpt-button--secondary"
33 href="<?php echo esc_attr( tpt_fs()->get_trial_url() ); ?>">
34 <?php esc_html_e( 'Try trial', 'tier-pricing-table' ); ?>
35 </a>
36
37 <a target="_blank" class="tpt-button tpt-button--default" href="<?php echo esc_attr( $contactUsUrl ); ?>">
38 <?php esc_html_e( 'Contact Us!', 'tier-pricing-table' ); ?>
39 </a>
40 </div>
41 </div>
42 </div>