Changeset 3242946
- Timestamp:
- 02/19/2025 03:15:10 AM (10 months ago)
- Location:
- biteship-shipping/trunk
- Files:
-
- 4 edited
-
biteship-shipping.php (modified) (2 diffs)
-
includes/class-biteship-helper.php (modified) (2 diffs)
-
includes/class-biteship-shipping-method.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
biteship-shipping/trunk/biteship-shipping.php
r3235818 r3242946 4 4 * Plugin Name: Biteship Shipping 5 5 * Description: Integrate Biteship shipping services with your WooCommerce store. 6 * Version: 1.0. 76 * Version: 1.0.8 7 7 * Author: Biteship 8 8 * Author URI: https://biteship.com … … 27 27 if (in_array("woocommerce/woocommerce.php", apply_filters("active_plugins", get_option("active_plugins")))) { 28 28 // Define plugin constants. 29 define("BITESHIP_SHIPPING_VERSION", "1.0. 7");29 define("BITESHIP_SHIPPING_VERSION", "1.0.8"); 30 30 define("BITESHIP_SHIPPING_FILE", __FILE__); 31 31 define("BITESHIP_SHIPPING_PATH", plugin_dir_path(__FILE__)); -
biteship-shipping/trunk/includes/class-biteship-helper.php
r3216259 r3242946 98 98 "quantity" => $item->get_quantity(), 99 99 "value" => $product->get_price(), 100 "sku" => $product->get_sku(), 100 101 ]; 101 102 … … 126 127 "quantity" => $item->get_quantity(), 127 128 "value" => $product->get_price(), 129 "sku" => $product->get_sku(), 128 130 ]; 129 131 -
biteship-shipping/trunk/includes/class-biteship-shipping-method.php
r3216259 r3242946 183 183 "quantity" => $content["quantity"], 184 184 "value" => (int) $product->get_price(), 185 "sku" => $product->get_sku(), 185 186 ]); 186 187 } -
biteship-shipping/trunk/readme.txt
r3235818 r3242946 5 5 Tested up to: 6.7 6 6 Requires PHP: 7.2 7 Stable tag: 1.0. 77 Stable tag: 1.0.8 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 79 79 80 80 == Changelog == 81 = 1.0.8 = 82 * Add sku in item's information 81 83 = 1.0.7 = 82 84 * Add paxel as courier that needed coordinates
Note: See TracChangeset
for help on using the changeset viewer.