💎 PREMIUM: Changeset/ - HD Photos!

Changeset 3242946


Ignore:
Timestamp:
02/19/2025 03:15:10 AM (10 months ago)
Author:
biteship
Message:

Release version 1.0.8

Location:
biteship-shipping/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • biteship-shipping/trunk/biteship-shipping.php

    r3235818 r3242946  
    44 * Plugin Name: Biteship Shipping
    55 * Description: Integrate Biteship shipping services with your WooCommerce store.
    6  * Version: 1.0.7
     6 * Version: 1.0.8
    77 * Author: Biteship
    88 * Author URI: https://biteship.com
     
    2727if (in_array("woocommerce/woocommerce.php", apply_filters("active_plugins", get_option("active_plugins")))) {
    2828    // Define plugin constants.
    29     define("BITESHIP_SHIPPING_VERSION", "1.0.7");
     29    define("BITESHIP_SHIPPING_VERSION", "1.0.8");
    3030    define("BITESHIP_SHIPPING_FILE", __FILE__);
    3131    define("BITESHIP_SHIPPING_PATH", plugin_dir_path(__FILE__));
  • biteship-shipping/trunk/includes/class-biteship-helper.php

    r3216259 r3242946  
    9898                "quantity" => $item->get_quantity(),
    9999                "value" => $product->get_price(),
     100                "sku" => $product->get_sku(),
    100101            ];
    101102
     
    126127                "quantity" => $item->get_quantity(),
    127128                "value" => $product->get_price(),
     129                "sku" => $product->get_sku(),
    128130            ];
    129131
  • biteship-shipping/trunk/includes/class-biteship-shipping-method.php

    r3216259 r3242946  
    183183                "quantity" => $content["quantity"],
    184184                "value" => (int) $product->get_price(),
     185                "sku" => $product->get_sku(),
    185186            ]);
    186187        }
  • biteship-shipping/trunk/readme.txt

    r3235818 r3242946  
    55Tested up to: 6.7
    66Requires PHP: 7.2
    7 Stable tag: 1.0.7
     7Stable tag: 1.0.8
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7979
    8080== Changelog ==
     81= 1.0.8 =
     82* Add sku in item's information
    8183= 1.0.7 =
    8284* Add paxel as courier that needed coordinates
Note: See TracChangeset for help on using the changeset viewer.