• 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/

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’d like to know this too. If I add custom checkout fields, will that show up on the CSV order export?

    Plugin Contributor Ratnakar

    (@ratnakardubey)

    If you don’t want to edit values of that custom field through Smart Manager then it will be easier to implement this, but still it will require many manual changes.

    Also you’ll not be able to update Smart Manager after that, as if you’ll update, all your changes will get lost.

    If still you want to know how to do that, please submit this query at Store Apps Support

    If you are looking for all update option for the field, it’ll be very difficult.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Delivery Date field’ is closed to new replies.