PluginProbe
Tiered Pricing Table for WooCommerce / 8.0.2
Tiered Pricing Table for WooCommerce v8.0.2
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 / banners / free-version-used-premium-available.php

free-version-used-premium-available.php in Tiered Pricing Table for WooCommerce 8.0.2, at views/admin/banners/free-version-used-premium-available.php

33 lines 937 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 bool $is_product
9 */
10 $is_product = isset( $is_product ) ? $is_product : false;
11 ?>
12
13 <div class="tpt-alert <?php echo esc_attr( $is_product ? 'tpt-alert--compact' : '' ); ?>">
14 <div class="tpt-alert__text">
15 <div class="tpt-alert__inner">
16 <span class="tpt-badge tpt-badge--free"><?php esc_html_e( 'Free Version', 'tier-pricing-table' ); ?></span>
17 <strong style="margin-left: 6px;">
18 <?php
19 esc_html_e( 'Premium License Available',
20 'tier-pricing-table' );
21 ?>
22 </strong>
23 &mdash;
24 <span style="font-weight: normal; font-size: 13px;">
25 <?php
26 echo wp_kses_post( __( 'You are currently running the free version. Download the Pro version from your <a href="' . esc_url( tpt_fs()->get_account_url() ) . '">account</a> or purchase receipt.',
27 'tier-pricing-table' ) );
28 ?>
29 </span>
30 </div>
31 </div>
32 </div>
33