Changeset 3081645
- Timestamp:
- 05/06/2024 03:36:04 AM (2 years ago)
- Location:
- ecomdy-pixel/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (3 diffs)
-
pixel-tiktok.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ecomdy-pixel/trunk/README.txt
r3038240 r3081645 1 1 === Ecomdy Pixel === 2 Contributors: ecomdy_media2 Contributors: Ecomdy Media 3 3 Tags: tiktok, pixel, woocommerce, analytics, ecomdy 4 4 Requires at least: 5.7.0 5 5 Tested up to: 6.4 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 65 65 == Changelog == 66 66 67 = 1.0.1 = 68 * Fix conflict issues with elementor plugin. 69 * Update on/off function from Ecomdy platform 70 67 71 = 1.0.0 = 68 72 * Initial release. … … 70 74 71 75 == Upgrade Notice == 76 = 1.0.1 = 77 * Fix conflict issues with elementor plugin. 78 * Update on/off function from Ecomdy platform 72 79 73 80 = 1.0.0 = -
ecomdy-pixel/trunk/pixel-tiktok.php
r3038250 r3081645 206 206 function ctecd_wp_kama_woocommerce_cart_needs_shipping_filter($needs_shipping) 207 207 { 208 208 209 if (!is_checkout() || did_action('wp_footer')) { 209 210 remove_filter('woocommerce_cart_needs_shipping', 'ctecd_wp_kama_woocommerce_cart_needs_shipping_filter'); 210 211 return; 211 212 } 213 // Removed Script on Every Ajax Request on Checkout Page By M Usman Rashid 214 if(wp_doing_ajax() ){ 215 remove_filter('woocommerce_cart_needs_shipping', 'ctecd_wp_kama_woocommerce_cart_needs_shipping_filter'); 216 return; 217 } 218 212 219 remove_filter('woocommerce_cart_needs_shipping', 'ctecd_wp_kama_woocommerce_cart_needs_shipping_filter'); 213 220 221 214 222 $cart_contents = WC()->cart->get_cart(); 215 223 $js_event_data = [];
Note: See TracChangeset
for help on using the changeset viewer.