Changeset 1918943
- Timestamp:
- 08/02/2018 05:20:54 PM (8 years ago)
- Location:
- woo-dhl-auto-complete/trunk
- Files:
-
- 3 edited
-
Woo-dhl-freight-auto-complete-orders.php (modified) (1 diff)
-
classes/DHLAutoOrderStatus.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-dhl-auto-complete/trunk/Woo-dhl-freight-auto-complete-orders.php
r1901768 r1918943 10 10 Plugin URI: https://developer.wordpress.org/plugins/the-basics/ 11 11 Description: Auto Completing orders through DHL API 12 Version: 1. 1.012 Version: 1.2.0 13 13 Author: mnording10 14 14 Author URI: https://mnording.com -
woo-dhl-auto-complete/trunk/classes/DHLAutoOrderStatus.php
r1900763 r1918943 11 11 function __construct() 12 12 { 13 add_action( ' admin_init', array($this,'register_awaiting_shipment_order_status'));14 add_filter( 'wc_order_statuses', array($this,'add_awaiting_shipment_to_order_statuses') );13 add_action( 'init', array($this,'register_awaiting_shipment_order_status'),0 ); 14 add_filter( 'wc_order_statuses', array($this,'add_awaiting_shipment_to_order_statuses'),0 ); 15 15 add_action( 'wp_ajax_dhl_auto_set_awaiting', array($this,'dhl_auto_set_awaiting' )); 16 16 add_filter( 'woocommerce_admin_order_actions', array($this,'add_custom_order_status_actions_button'), 100, 2 ); -
woo-dhl-auto-complete/trunk/readme.txt
r1901768 r1918943 17 17 This plugins relies on that you are entering your order ID from woocommerce into the sender-reference part of the shipment. 18 18 19 == FAQ == 20 Do i need a MyACT Account for this plugin to work? 21 Yes 22 23 How do i get Access to the API? 24 You email se.ecom@dhl.com mentioning your myAct account and that you want ACT Webservice access. 25 19 26 == Installation == 20 27 Upload to wp-content/plugins … … 28 35 29 36 == Changelog == 37 1.2.0 - Now showing orders that are pending shipment in My-Account! 30 38 1.1.0 - Added check for woocommerce activation and cleanup for de-activation of plugin. 31 39 1.0.0 - Initial release
Note: See TracChangeset
for help on using the changeset viewer.