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 / addons / global-rules / pricing-notice.php

pricing-notice.php in Tiered Pricing Table for WooCommerce 6.1.0, at views/addons/global-rules/pricing-notice.php

30 lines 917 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'WPINC' ) ) {
3 die;
4 }
5 ?>
6
7 <h4>
8 <?php esc_html_e( 'Please note that the prices and quantity limits you set here could be overridden at the product level.',
9 'tier-pricing-table' ); ?>
10 </h4>
11
12 <h4>
13 <?php esc_html_e( 'Control pricing priorities in the', 'tier-pricing-table' ); ?>
14 <a href="#" id="tpt-global-pricing-rule-pricing-notice-settings-link">
15 <?php esc_html_e( 'Settings', 'tier-pricing-table' ); ?>
16 </a>
17 </h4>
18
19 <script>
20 jQuery('#tpt-global-pricing-rule-pricing-notice-settings-link').click(function () {
21
22 jQuery('[data-target=tpt-global-pricing-rule-form-tab-settings]').trigger('click');
23 jQuery('[name=_tpt_settings_priority_type]').closest('.tiered-pricing-form-block').addClass('tpt-heartbeat');
24
25 setTimeout(function () {
26 jQuery('[name=_tpt_settings_priority_type]').closest('.tiered-pricing-form-block').removeClass('tpt-heartbeat')
27 }, 600);
28 });
29 </script>
30