Changeset 3077765
- Timestamp:
- 04/26/2024 05:06:45 PM (23 months ago)
- Location:
- shipping-coordinadora-woocommerce
- Files:
-
- 1 deleted
- 3 edited
- 13 copied
-
tags/3.0.30 (copied) (copied from shipping-coordinadora-woocommerce/trunk)
-
tags/3.0.30/assets/js/config.js (deleted)
-
tags/3.0.30/assets/js/shipping-coordinadora-wc.js (copied) (copied from shipping-coordinadora-woocommerce/trunk/assets/js/shipping-coordinadora-wc.js)
-
tags/3.0.30/assets/js/sweetalert2-min.js (copied) (copied from shipping-coordinadora-woocommerce/trunk/assets/js/sweetalert2-min.js)
-
tags/3.0.30/assets/js/view-order.js (copied) (copied from shipping-coordinadora-woocommerce/trunk/assets/js/view-order.js)
-
tags/3.0.30/includes/admin/settings.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/admin/settings.php)
-
tags/3.0.30/includes/class-method-shipping-coordinadora-collection-wc.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/class-method-shipping-coordinadora-collection-wc.php)
-
tags/3.0.30/includes/class-method-shipping-coordinadora-wc.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/class-method-shipping-coordinadora-wc.php)
-
tags/3.0.30/includes/class-shipping-coordinadora-wc-admin.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/class-shipping-coordinadora-wc-admin.php)
-
tags/3.0.30/includes/class-shipping-coordinadora-wc-plugin.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/class-shipping-coordinadora-wc-plugin.php) (2 diffs)
-
tags/3.0.30/includes/class-shipping-coordinadora-wc.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/class-shipping-coordinadora-wc.php)
-
tags/3.0.30/lib/coordinadora-webservice-php/src/WebService.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/lib/coordinadora-webservice-php/src/WebService.php)
-
tags/3.0.30/readme.txt (copied) (copied from shipping-coordinadora-woocommerce/trunk/readme.txt) (2 diffs)
-
tags/3.0.30/shipping-coordinadora-wc.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/shipping-coordinadora-wc.php) (2 diffs)
-
trunk/includes/class-shipping-coordinadora-wc-plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/shipping-coordinadora-wc.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shipping-coordinadora-woocommerce/tags/3.0.30/includes/class-shipping-coordinadora-wc-plugin.php
r3076527 r3077765 191 191 } 192 192 193 public static function add_custom_shipping_option_to_products() 193 public static function add_custom_shipping_option_to_products(): void 194 194 { 195 195 global $post; 196 global $shipping_custom_price_product_smp_loaded; 197 198 if (!isset($shipping_custom_price_product_smp_loaded)) { 199 $shipping_custom_price_product_smp_loaded = false; 200 } 201 202 if($shipping_custom_price_product_smp_loaded) return; 196 203 197 204 woocommerce_wp_text_input( [ … … 203 210 'value' => get_post_meta( $post->ID, '_shipping_custom_price_product_smp', true ), 204 211 ] ); 205 } 206 207 public function variation_settings_fields($loop, $variation_data, $variation) 212 213 $shipping_custom_price_product_smp_loaded = true; 214 } 215 216 public static function variation_settings_fields($loop, $variation_data, $variation): void 208 217 { 209 218 woocommerce_wp_text_input( -
shipping-coordinadora-woocommerce/tags/3.0.30/readme.txt
r3076527 r3077765 6 6 Tested up to: 6.5.2 7 7 Requires PHP: 8.1 8 Stable tag: 3.0. 298 Stable tag: 3.0.30 9 9 License: GNU General Public License v3.0 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 112 112 * Upodated validate encrypt password 113 113 * Refactor calculate_shipping 114 = 3.0.30 = 115 * Fixed repeat field _shipping_custom_price_product_smp in simple product 116 * Fixed call static method variation_settings_fields 114 117 115 118 -
shipping-coordinadora-woocommerce/tags/3.0.30/shipping-coordinadora-wc.php
r3076527 r3077765 3 3 * Plugin Name: Shipping Coordinadora Woocommerce 4 4 * Description: Shipping Coordinadora Woocommerce is available for Colombia 5 * Version: 3.0. 295 * Version: 3.0.30 6 6 * Author: Saul Morales Pacheco 7 7 * Author URI: https://saulmoralespa.com … … 19 19 20 20 if(!defined('SHIPPING_COORDINADORA_WC_CSWC_VERSION')){ 21 define('SHIPPING_COORDINADORA_WC_CSWC_VERSION', '3.0. 29');21 define('SHIPPING_COORDINADORA_WC_CSWC_VERSION', '3.0.30'); 22 22 } 23 23 -
shipping-coordinadora-woocommerce/trunk/includes/class-shipping-coordinadora-wc-plugin.php
r3076527 r3077765 191 191 } 192 192 193 public static function add_custom_shipping_option_to_products() 193 public static function add_custom_shipping_option_to_products(): void 194 194 { 195 195 global $post; 196 global $shipping_custom_price_product_smp_loaded; 197 198 if (!isset($shipping_custom_price_product_smp_loaded)) { 199 $shipping_custom_price_product_smp_loaded = false; 200 } 201 202 if($shipping_custom_price_product_smp_loaded) return; 196 203 197 204 woocommerce_wp_text_input( [ … … 203 210 'value' => get_post_meta( $post->ID, '_shipping_custom_price_product_smp', true ), 204 211 ] ); 205 } 206 207 public function variation_settings_fields($loop, $variation_data, $variation) 212 213 $shipping_custom_price_product_smp_loaded = true; 214 } 215 216 public static function variation_settings_fields($loop, $variation_data, $variation): void 208 217 { 209 218 woocommerce_wp_text_input( -
shipping-coordinadora-woocommerce/trunk/readme.txt
r3076527 r3077765 6 6 Tested up to: 6.5.2 7 7 Requires PHP: 8.1 8 Stable tag: 3.0. 298 Stable tag: 3.0.30 9 9 License: GNU General Public License v3.0 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 112 112 * Upodated validate encrypt password 113 113 * Refactor calculate_shipping 114 = 3.0.30 = 115 * Fixed repeat field _shipping_custom_price_product_smp in simple product 116 * Fixed call static method variation_settings_fields 114 117 115 118 -
shipping-coordinadora-woocommerce/trunk/shipping-coordinadora-wc.php
r3076527 r3077765 3 3 * Plugin Name: Shipping Coordinadora Woocommerce 4 4 * Description: Shipping Coordinadora Woocommerce is available for Colombia 5 * Version: 3.0. 295 * Version: 3.0.30 6 6 * Author: Saul Morales Pacheco 7 7 * Author URI: https://saulmoralespa.com … … 19 19 20 20 if(!defined('SHIPPING_COORDINADORA_WC_CSWC_VERSION')){ 21 define('SHIPPING_COORDINADORA_WC_CSWC_VERSION', '3.0. 29');21 define('SHIPPING_COORDINADORA_WC_CSWC_VERSION', '3.0.30'); 22 22 } 23 23
Note: See TracChangeset
for help on using the changeset viewer.