Orders Archives - Plugin Republic https://pluginrepublic.com/support-categories/orders/ WooCommerce Plugins Mon, 14 Aug 2023 06:37:03 +0000 en-US hourly 1 https://pluginrepublic.com/wp-content/uploads/2020/10/cropped-favicon-1-32x32.png Orders Archives - Plugin Republic https://pluginrepublic.com/support-categories/orders/ 32 32 Display order meta in Web Toffee Invoice and Packing Slip plugin https://pluginrepublic.com/documentation/display-order-meta-in-web-toffee-invoice-and-packing-slip-plugin/ https://pluginrepublic.com/documentation/display-order-meta-in-web-toffee-invoice-and-packing-slip-plugin/#respond Mon, 30 Nov 2020 07:49:05 +0000 https://pluginrepublic.com/?post_type=ht_kb&p=716371 Product Add-Ons Ultimate is compatible with the Invoice and Packing Slip plugin from Web Toffee. To display order meta on a packing slip or invoice: If the meta doesn’t show, you might need to add this snippet:

The post Display order meta in Web Toffee Invoice and Packing Slip plugin appeared first on Plugin Republic.

]]>
Product Add-Ons Ultimate is compatible with the Invoice and Packing Slip plugin from Web Toffee.

To display order meta on a packing slip or invoice:

  • In the Packing Slip plugin, go to Invoice Settings > Advanced
  • Add the order meta and product meta as required

If the meta doesn’t show, you might need to add this snippet:

View this code snippet on GitHub.

The post Display order meta in Web Toffee Invoice and Packing Slip plugin appeared first on Plugin Republic.

]]>
https://pluginrepublic.com/documentation/display-order-meta-in-web-toffee-invoice-and-packing-slip-plugin/feed/ 0
How to edit add-ons in existing orders https://pluginrepublic.com/documentation/how-to-edit-add-ons-in-existing-orders/ https://pluginrepublic.com/documentation/how-to-edit-add-ons-in-existing-orders/#respond Wed, 20 May 2020 10:37:09 +0000 https://pluginrepublic.com/?post_type=ht_kb&p=404857 You can edit add-ons in orders from the back end. Click on the order you wish to edit, then click the pencil icon against the line item you need to update. The add-on label and value will become editable.

The post How to edit add-ons in existing orders appeared first on Plugin Republic.

]]>
You can edit add-ons in orders from the back end. Click on the order you wish to edit, then click the pencil icon against the line item you need to update.

The add-on label and value will become editable.

The post How to edit add-ons in existing orders appeared first on Plugin Republic.

]]>
https://pluginrepublic.com/documentation/how-to-edit-add-ons-in-existing-orders/feed/ 0
Hide add-on prices for all fields in the order and order confirmation email https://pluginrepublic.com/documentation/hide-add-on-prices-for-all-fields-in-the-order-and-order-confirmation-email/ https://pluginrepublic.com/documentation/hide-add-on-prices-for-all-fields-in-the-order-and-order-confirmation-email/#respond Wed, 06 May 2020 09:41:51 +0000 https://pluginrepublic.com/?post_type=ht_kb&p=378053 If you want to hide add-on prices in the order and order confirmation email, use this snippet: Here’s how to add a snippet.

The post Hide add-on prices for all fields in the order and order confirmation email appeared first on Plugin Republic.

]]>
If you want to hide add-on prices in the order and order confirmation email, use this snippet:

View this code snippet on GitHub.

Here’s how to add a snippet.

The post Hide add-on prices for all fields in the order and order confirmation email appeared first on Plugin Republic.

]]>
https://pluginrepublic.com/documentation/hide-add-on-prices-for-all-fields-in-the-order-and-order-confirmation-email/feed/ 0
Hide field types in order data https://pluginrepublic.com/documentation/hide-field-types-in-order-data/ https://pluginrepublic.com/documentation/hide-field-types-in-order-data/#respond Tue, 24 Sep 2019 15:09:52 +0000 https://pluginrepublic.com/?post_type=ht_kb&p=122466 If you want to hide certain field types, e.g. calculation fields, from being displayed in order data, use the following snippet: You can add this snippet by following these steps. Find out how to hide field types in the cart and checkout here.

The post Hide field types in order data appeared first on Plugin Republic.

]]>
If you want to hide certain field types, e.g. calculation fields, from being displayed in order data, use the following snippet:

View this code snippet on GitHub.

You can add this snippet by following these steps.

Find out how to hide field types in the cart and checkout here.

The post Hide field types in order data appeared first on Plugin Republic.

]]>
https://pluginrepublic.com/documentation/hide-field-types-in-order-data/feed/ 0
Trigger action when order is processed https://pluginrepublic.com/documentation/trigger-action-when-order-is-processed/ https://pluginrepublic.com/documentation/trigger-action-when-order-is-processed/#respond Wed, 31 Jul 2019 15:00:27 +0000 https://pluginrepublic.com/?post_type=ht_kb&p=93897 If you would like to trigger an action, e.g. sending a custom email, depending on the value of a specific field, you can do something like this: The code above checks each field in an order for a specific ID and a specific value. In this example, the field ID is 1234, the field type […]

The post Trigger action when order is processed appeared first on Plugin Republic.

]]>
If you would like to trigger an action, e.g. sending a custom email, depending on the value of a specific field, you can do something like this:

View this code snippet on GitHub.

The code above checks each field in an order for a specific ID and a specific value. In this example, the field ID is 1234, the field type is a checkbox, so we’re checking for ‘__checked__’ as the field value. You can modify this as you wish.

In the second function, you’ll need to update the values for $to, $subject and $content depending on who you want to email and what you want to say.

Here’s how to add the snippet.

The post Trigger action when order is processed appeared first on Plugin Republic.

]]>
https://pluginrepublic.com/documentation/trigger-action-when-order-is-processed/feed/ 0
Get add-ons meta data from the order https://pluginrepublic.com/documentation/get-add-ons-meta-data-from-the-order/ https://pluginrepublic.com/documentation/get-add-ons-meta-data-from-the-order/#respond Fri, 05 Jul 2019 10:22:49 +0000 https://pluginrepublic.com/?post_type=ht_kb&p=84027 If you need to get add-ons data from the order, you can use the following function. You’ll see that the function includes two ways to get metadata – first, to iterate through all metadata in each line item. Second, to return the value of a specific metakey:

The post Get add-ons meta data from the order appeared first on Plugin Republic.

]]>
If you need to get add-ons data from the order, you can use the following function. You’ll see that the function includes two ways to get metadata – first, to iterate through all metadata in each line item. Second, to return the value of a specific metakey:

View this code snippet on GitHub.

The post Get add-ons meta data from the order appeared first on Plugin Republic.

]]>
https://pluginrepublic.com/documentation/get-add-ons-meta-data-from-the-order/feed/ 0
Exporting Add-Ons by Order https://pluginrepublic.com/documentation/exporting-extras-by-order/ https://pluginrepublic.com/documentation/exporting-extras-by-order/#respond Thu, 14 Feb 2019 16:20:24 +0000 https://pluginrepublic.com/?post_type=ht_kb&p=45760 If you would like to export details of WooCommerce Product Add Ons Ultimate fields by order, you can do so easily. Go to WooCommerce Product Add Ons Ultimate > Export, click ‘Export’, and a CSV file will be downloaded to your computer.

The post Exporting Add-Ons by Order appeared first on Plugin Republic.

]]>
If you would like to export details of WooCommerce Product Add Ons Ultimate fields by order, you can do so easily. Go to WooCommerce Product Add Ons Ultimate > Export, click ‘Export’, and a CSV file will be downloaded to your computer.

The post Exporting Add-Ons by Order appeared first on Plugin Republic.

]]>
https://pluginrepublic.com/documentation/exporting-extras-by-order/feed/ 0
Add-Ons by Order https://pluginrepublic.com/documentation/extras-by-order/ https://pluginrepublic.com/documentation/extras-by-order/#respond Thu, 14 Feb 2019 16:03:09 +0000 http://localhost/pluginrepublic/?post_type=ht_kb&p=39296 When a customer completes an order that contains products with Product Add Ons fields, a new entry is made in the ‘Extras by Order’ list. To view this list in your dashboard, go to WooCommerce Product Add Ons Ultimate > Add-Ons by Order. Each entry here is linked to an order and is used to […]

The post Add-Ons by Order appeared first on Plugin Republic.

]]>
When a customer completes an order that contains products with Product Add Ons fields, a new entry is made in the ‘Extras by Order’ list.

To view this list in your dashboard, go to WooCommerce Product Add Ons Ultimate > Add-Ons by Order. Each entry here is linked to an order and is used to store all the Product Add Ons fields associated with products in each order.

The post Add-Ons by Order appeared first on Plugin Republic.

]]>
https://pluginrepublic.com/documentation/extras-by-order/feed/ 0