Delivery Date field
-
Hi,
I am adding the option for a Delivery date in the checkout using the following extension:
https://www.ads-software.com/extend/plugins/order-delivery-date-for-woocommerce/This adds a custom field to the order post. I know I can call this with some code (will include at the bottom of the post).
I was wondering if you were able to advise how I may be able to add this custom field to your Smart Manager and/or CSV export.
We need to order the orders by the date of dispatch, so we can send them out in the correct order. It would be ideal to do this via your Plugin or via Excel CSV.
Thanks for your help and a great plugin.
<?php $delivery_date_label = get_option('orddd_delivery_date_field_label'); if ($order->order_custom_fields[$delivery_date_label][0] != '') { ?> <div> <h3><?php _e('Delivery Date', 'woocommerce-pip'); ?></h3> <?php echo $order->order_custom_fields[$delivery_date_label][0]; ?> </div> <?php } ?>
https://www.ads-software.com/extend/plugins/smart-manager-for-wp-e-commerce/
- The topic ‘Delivery Date field’ is closed to new replies.