Changeset 3485314
- Timestamp:
- 03/18/2026 06:25:48 AM (2 weeks ago)
- Location:
- real-time-shipping-quotes-for-woocommerce
- Files:
-
- 6 edited
- 1 copied
-
tags/2.0.1 (copied) (copied from real-time-shipping-quotes-for-woocommerce/trunk)
-
tags/2.0.1/eniture_admin/product/en-product-detail.php (modified) (1 diff)
-
tags/2.0.1/readme.txt (modified) (2 diffs)
-
tags/2.0.1/real-time-shipping-quotes-for-wocommerce.php (modified) (1 diff)
-
trunk/eniture_admin/product/en-product-detail.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/real-time-shipping-quotes-for-wocommerce.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
real-time-shipping-quotes-for-woocommerce/tags/2.0.1/eniture_admin/product/en-product-detail.php
r3478991 r3485314 26 26 public function __construct() 27 27 { 28 // Add simple product fields 29 add_action('woocommerce_product_options_shipping', [$this, 'en_show_product_fields'], 101, 3); 30 add_action('woocommerce_process_product_meta', [$this, 'en_save_product_fields'], 101, 1); 31 32 // Add variable product fields. 33 add_action('woocommerce_product_after_variable_attributes', [$this, 'en_show_product_fields'], 101, 3); 34 add_action('woocommerce_save_product_variation', [$this, 'en_save_product_fields'], 101, 1); 28 // Check compatible with optimized product fields methods. 29 add_filter('en_compatible_optimized_product_options', [$this, 'en_compatible_other_eniture_plugins']); 30 31 if (!has_filter('En_Plugins_dropship_filter') && 32 !has_filter('En_Plugins_variable_freight_classification_filter')) { 33 // Add simple product fields 34 add_action('woocommerce_product_options_shipping', [$this, 'en_show_product_fields'], 101, 3); 35 add_action('woocommerce_process_product_meta', [$this, 'en_save_product_fields'], 101, 1); 36 37 // Add variable product fields. 38 add_action('woocommerce_product_after_variable_attributes', [$this, 'en_show_product_fields'], 101, 3); 39 add_action('woocommerce_save_product_variation', [$this, 'en_save_product_fields'], 101, 1); 40 41 // Check compatible with our old eniture plugins. 42 add_filter('En_Plugins_dropship_filter', [$this, 'en_compatible_other_eniture_plugins']); 43 add_filter('En_Plugins_variable_freight_classification_filter', [$this, 'en_compatible_other_eniture_plugins']); 44 } 45 } 46 47 /** 48 * Restrict to show duplicate fields on product detail page. 49 */ 50 public function en_compatible_other_eniture_plugins() 51 { 52 return true; 35 53 } 36 54 -
real-time-shipping-quotes-for-woocommerce/tags/2.0.1/readme.txt
r3478991 r3485314 4 4 Requires at least: 6.7 5 5 Tested up to: 6.9 6 Stable tag: 2.0. 06 Stable tag: 2.0.1 7 7 License: GPL-2.0-or-later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 124 124 == Changelog == 125 125 126 = 2.0.1 - 2026-03-18 = 127 * Fix: Resolved an issue where duplicate dropship fields appeared on the product details page when used alongside other Eniture plugins. 128 126 129 = 2.0.0 - 2026-03-09 = 127 130 * Update: Introduced support for **AAA Cooper Transportation** carrier. -
real-time-shipping-quotes-for-woocommerce/tags/2.0.1/real-time-shipping-quotes-for-wocommerce.php
r3478991 r3485314 3 3 * Plugin Name: Real Time Shipping Quotes for WooCommerce 4 4 * Description: Dynamically retrieves your negotiated shipping rates from different shipping carriers and displays the results in the WooCommerce shopping cart. 5 * Version: 2.0. 05 * Version: 2.0.1 6 6 * Author: Eniture Technology 7 7 * Author URI: https://eniture.com -
real-time-shipping-quotes-for-woocommerce/trunk/eniture_admin/product/en-product-detail.php
r3478991 r3485314 26 26 public function __construct() 27 27 { 28 // Add simple product fields 29 add_action('woocommerce_product_options_shipping', [$this, 'en_show_product_fields'], 101, 3); 30 add_action('woocommerce_process_product_meta', [$this, 'en_save_product_fields'], 101, 1); 31 32 // Add variable product fields. 33 add_action('woocommerce_product_after_variable_attributes', [$this, 'en_show_product_fields'], 101, 3); 34 add_action('woocommerce_save_product_variation', [$this, 'en_save_product_fields'], 101, 1); 28 // Check compatible with optimized product fields methods. 29 add_filter('en_compatible_optimized_product_options', [$this, 'en_compatible_other_eniture_plugins']); 30 31 if (!has_filter('En_Plugins_dropship_filter') && 32 !has_filter('En_Plugins_variable_freight_classification_filter')) { 33 // Add simple product fields 34 add_action('woocommerce_product_options_shipping', [$this, 'en_show_product_fields'], 101, 3); 35 add_action('woocommerce_process_product_meta', [$this, 'en_save_product_fields'], 101, 1); 36 37 // Add variable product fields. 38 add_action('woocommerce_product_after_variable_attributes', [$this, 'en_show_product_fields'], 101, 3); 39 add_action('woocommerce_save_product_variation', [$this, 'en_save_product_fields'], 101, 1); 40 41 // Check compatible with our old eniture plugins. 42 add_filter('En_Plugins_dropship_filter', [$this, 'en_compatible_other_eniture_plugins']); 43 add_filter('En_Plugins_variable_freight_classification_filter', [$this, 'en_compatible_other_eniture_plugins']); 44 } 45 } 46 47 /** 48 * Restrict to show duplicate fields on product detail page. 49 */ 50 public function en_compatible_other_eniture_plugins() 51 { 52 return true; 35 53 } 36 54 -
real-time-shipping-quotes-for-woocommerce/trunk/readme.txt
r3478991 r3485314 4 4 Requires at least: 6.7 5 5 Tested up to: 6.9 6 Stable tag: 2.0. 06 Stable tag: 2.0.1 7 7 License: GPL-2.0-or-later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 124 124 == Changelog == 125 125 126 = 2.0.1 - 2026-03-18 = 127 * Fix: Resolved an issue where duplicate dropship fields appeared on the product details page when used alongside other Eniture plugins. 128 126 129 = 2.0.0 - 2026-03-09 = 127 130 * Update: Introduced support for **AAA Cooper Transportation** carrier. -
real-time-shipping-quotes-for-woocommerce/trunk/real-time-shipping-quotes-for-wocommerce.php
r3478991 r3485314 3 3 * Plugin Name: Real Time Shipping Quotes for WooCommerce 4 4 * Description: Dynamically retrieves your negotiated shipping rates from different shipping carriers and displays the results in the WooCommerce shopping cart. 5 * Version: 2.0. 05 * Version: 2.0.1 6 6 * Author: Eniture Technology 7 7 * Author URI: https://eniture.com
Note: See TracChangeset
for help on using the changeset viewer.