Changeset 3361101
- Timestamp:
- 09/13/2025 06:35:35 PM (7 months ago)
- Location:
- rd-wc-order-modifier/trunk
- Files:
-
- 3 edited
-
classes/class.rdwcom-manager.php (modified) (1 diff)
-
rd-wc-order-modifier.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rd-wc-order-modifier/trunk/classes/class.rdwcom-manager.php
r3232864 r3361101 871 871 public static function woocommerce_before_save_order_item( $item ) { 872 872 if ( $item && 'line_item' == $item->get_type() ) { 873 //Only modify if it's a product line item 873 874 if ( $item->get_product_id() ) { 874 875 $raw_tax_data = array( -
rd-wc-order-modifier/trunk/rd-wc-order-modifier.php
r3232864 r3361101 3 3 Plugin URI: 4 4 Description: Allows editing order items pricing inclusive of tax. 5 Version: 1.1. 25 Version: 1.1.3 6 6 Author: Robot Dwarf 7 7 Author URI: https://www.robotdwarf.com 8 8 WC requires at least: 4.7.2 9 WC tested up to: 9.6.09 WC tested up to: 10.1.2 10 10 Requires PHP: 7.2 11 11 Requires at least: 5.0 … … 37 37 } 38 38 39 define( 'RDWCOM_VERSION', '1.1. 2' );39 define( 'RDWCOM_VERSION', '1.1.3' ); 40 40 define('RDWCOM_URL', plugin_dir_url( __FILE__ ) ); 41 41 define( 'RDWCOM_PATH', plugin_dir_path( __FILE__ ) ); -
rd-wc-order-modifier/trunk/readme.txt
r3232864 r3361101 3 3 Tags: woocommerce, tax, vat, orders, order editing 4 4 Requires at least: 5.0 5 Tested up to: 6. 7.16 Stable tag: 1.1. 25 Tested up to: 6.8.2 6 Stable tag: 1.1.3 7 7 Requires PHP: 7.2 8 8 License: GPLv2 or later … … 31 31 There 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: 32 32 33 * Allows you to change the sort order of order items 33 34 * Support for custom fee and shipping line items in addition to product line items 34 35 * Support for multiple tax rates … … 67 68 == Changelog == 68 69 70 = 1.1.3 = 71 Release Date – 13 September 2025 72 *Compatibility update 73 69 74 = 1.1.2 = 70 75 Release Date – 31 January 2025
Note: See TracChangeset
for help on using the changeset viewer.