Plugin Directory

Changeset 3361101


Ignore:
Timestamp:
09/13/2025 06:35:35 PM (7 months ago)
Author:
camper2020
Message:

compatibility update and comments

Location:
rd-wc-order-modifier/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • rd-wc-order-modifier/trunk/classes/class.rdwcom-manager.php

    r3232864 r3361101  
    871871    public static function woocommerce_before_save_order_item( $item ) {
    872872        if ( $item && 'line_item' == $item->get_type() ) {
     873            //Only modify if it's a product line item
    873874            if ( $item->get_product_id() ) {
    874875                $raw_tax_data = array(
  • rd-wc-order-modifier/trunk/rd-wc-order-modifier.php

    r3232864 r3361101  
    33Plugin URI:
    44Description: Allows editing order items pricing inclusive of tax.
    5 Version: 1.1.2
     5Version: 1.1.3
    66Author: Robot Dwarf
    77Author URI: https://www.robotdwarf.com
    88WC requires at least: 4.7.2
    9 WC tested up to: 9.6.0
     9WC tested up to: 10.1.2
    1010Requires PHP: 7.2
    1111Requires at least: 5.0
     
    3737}
    3838
    39 define( 'RDWCOM_VERSION', '1.1.2' );
     39define( 'RDWCOM_VERSION', '1.1.3' );
    4040define('RDWCOM_URL', plugin_dir_url( __FILE__ ) );
    4141define( 'RDWCOM_PATH', plugin_dir_path( __FILE__ ) );
  • rd-wc-order-modifier/trunk/readme.txt

    r3232864 r3361101  
    33Tags: woocommerce, tax, vat, orders, order editing
    44Requires at least: 5.0
    5 Tested up to: 6.7.1
    6 Stable tag: 1.1.2
     5Tested up to: 6.8.2
     6Stable tag: 1.1.3
    77Requires PHP: 7.2
    88License: GPLv2 or later
     
    3131There is a premium version of this plugin available for purchase from the WooCommerce marketplace. The premium version includes all the features of this *FREE* version as well as the following extra features:
    3232
     33* Allows you to change the sort order of order items
    3334* Support for custom fee and shipping line items in addition to product line items
    3435* Support for multiple tax rates
     
    6768== Changelog ==
    6869
     70= 1.1.3 =
     71Release Date – 13 September 2025
     72*Compatibility update
     73
    6974= 1.1.2 =
    7075Release Date – 31 January 2025
Note: See TracChangeset for help on using the changeset viewer.