This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

WC Duplicate Order

Description

After activation there will be a Duplicate link in the order overview page within the order actions on hover.

Duplicates all order Meta data and product data across into the new order ID.

Order is created and a note is left in the new order of the older order ID for future reference. Order status is then set on hold awaiting admin to confirm payment.

Supports Bulk order duplication.

Includes custom order field hook

Feature requests welcome for future development.

Screenshots

  • Order duplicate button displays on hover
  • After clicking the button order is duplicated and note is made on order with referance of duplicated order
  • Bulk Duplication

Installation

  1. Upload the plugin files to the /wp-content/plugins/ directory, or install the plugin through the WordPress plugins screen directly.
  2. Activate the plugin through the ‘Plugins’ screen in WordPress
  3. There will now be a Duplicate link in the to Woocommerce order overview page within the order actions on hover. Alternatively there is a bulk option to duplicate multiple orders.

Reviews

29 Samhain, 2020
This is a perfect solution to duplicate orders. Will be good if you can duplicate orders and update prices of product that was modified.
2 Deireadh Fómhair, 2020
Even though the plugin hasn't been updated for a while, it still works great on the newest Woocommerce version (tested in 4.5.2). A small hack. I prefer to set the default order status for duplicated orders to 'pending'. That's easy to achieve by changing 1 line of code in class-clone-order.php $order->update_status('on-hold'); to $order->update_status('pending');
25 Aibreán, 2020
Beautiful job, the plugin works perfectly and the support is really quick and helpful (helped me with a little bit of code to duplicate the custom fields of my orders). Thanks!
9 Nollaig, 2019 1 reply
- the customer does not receive an email - The administrator's email will not receive a completed billing address tested for woocommerce 3.8.1
20 Samhain, 2019
Good and simple plgin. Better to not make it complicated but if i can add something: + will be great if it will have option for dupplicate order directly in order details as well + will be perfect if we have option for choose the status for dupplicate. In my case is better to choose "waiting for payment" becasue at this status customers do not get notifications.
Read all 18 reviews

Contributors & Developers

“WC Duplicate Order” is open source software. The following people have contributed to this plugin.

Contributors

Translate “WC Duplicate Order” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

1.0

  • stable release
  • Tested Woocommerce 2.6.4+

1.0.1

  • Stock Reduction added

1.1

  • Bulk Duplication added
  • Bug fixes thanks to Shaun @ Rubious

1.2

  • Bug fix to keep order item meta in correct format contributed by @Kevin
  • 2 New hooks for extra fields for other developers ‘clone_extra_billing_fields_hook’ & ‘clone_extra_shipping_fields_hook’. Passes through orders IDs so you can pass in custom fields, just simply chacge the meta key to your new fields name see below (meta key been ‘_billing_mobile_phone’ in this case)

add_action(‘clone_extra_billing_fields_hook’, ‘clone_extra_billing_fields’, 10, 2);

function clone_extra_billing_fields($order_id, $original_order_id)
{
update_post_meta( $order_id, ‘_billing_mobile_phone’, get_post_meta($original_order_id, ‘_billing_mobile_phone’, true));
}

1.3

  • Update of clone items using CRUD methods due to incompatability

1.4

  • Update of clone fees and coupons using CRUD methods due to incompatability
  • Security patch thanks to @dungengronovius report

1.4.1

  • Introduce Nonce verification as an initial check before proceeding

1.4.2

  • Added in version check to make sure compatible, if false deactivate and display friendly error message
  • Duplicate other product meta data (attribute / variation data)

1.5

  • Modifications to work with 3.3.1 and onwards

1.7

  • Stock reduction fix
  • Fees name and other minor fixes
  • Duplicate button on quick view