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 / only-in-premium-script.php

only-in-premium-script.php in Tiered Pricing Table for WooCommerce 6.1.0, at views/admin/only-in-premium-script.php

38 lines 787 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 <style>
4 .tpt-premium-wrapper {
5 top: 40%;
6 left: 26%;
7 position: absolute;
8 }
9
10 .tpt-premium-wrapper__text {
11 transform: translateX(-50%);
12 font-size: 32px;
13 color: #ec3d3d;
14 font-weight: bold;
15 }
16
17 @media (max-width: 820px) {
18
19 .tpt-premium-wrapper__text {
20 transform: translateX(0);
21 }
22 }
23 </style>
24 <script>
25 jQuery(document).ready(function () {
26 jQuery('[data-tiered-pricing-premium-setting]').closest('table')
27 .css('pointer-events', 'none')
28 .css('position', 'relative')
29 .append('<div class="tpt-premium-wrapper" ><p class="tpt-premium-wrapper__text">
30 <?php
31 esc_html_e( 'Only in premium version',
32 'tier-pricing-table' );
33 ?>
34 </p></div>')
35 .find('tbody')
36 .css('opacity', '0.7');
37 });
38 </script>