PluginProbe
Tiered Pricing Table for WooCommerce / 2.3.1
Tiered Pricing Table for WooCommerce v2.3.1
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 2.3.4 All 90 releases
tier-pricing-table / views / admin / only-in-premium-script.php

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

33 lines 897 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! defined( 'ABSPATH' ) ) exit; ?>
2 <style>
3 .tpt-premium-wrapper {
4 top: 40%;
5 left: 26%;
6 position: absolute;
7 }
8
9 .tpt-premium-wrapper__text {
10 transform: translateX(-50%);
11 font-size: 32px;
12 color: #ec3d3d;
13 font-weight: bold;
14 }
15
16 @media (max-width: 820px) {
17
18 .tpt-premium-wrapper__text {
19 transform: translateX(0);
20 }
21 }
22 </style>
23 <script>
24 jQuery(document).ready(function () {
25 jQuery('[data-tiered-pricing-premium-setting]').closest('table')
26 .css('pointer-events', 'none')
27 .css('position', 'relative')
28 .append('<div class="tpt-premium-wrapper" ><p class="tpt-premium-wrapper__text"><?php _e( 'Only in premium version',
29 'tier-pricing-table' ); ?></p></div>')
30 .find('tbody')
31 .css('opacity', '0.7');
32 });
33 </script>