Hi,
Thank you for answering the question which I have asked in my previous reply.
We store all the settings of our plugin in the wp_options table. The selected Delivery Date for an order is saved in the ‘Delivery Date label’ meta key (the label which is set in the Appearance tab) in the wp_postmeta table, also we store the UNIX timestamp of the selected date in the ‘_orddd_lite_timestamp’ meta key in the same table.
So, if you want you can change the label in the setting ‘Field Label:’ which is present in the Appearance tab of our plugin’s settings according to your requirements.
But, this will not only change in the wp_postmeta table for the orders but it will display everywhere where the Delivery Date field label is shown for example on the checkout page, order listing page, order received page, email etc.,
If you want, you can use the ‘_orddd_lite_timestamp’ meta key which stores the timestamp of the selected Date of an order in the same postmeta table.
Alternatively, you can do the custom changes in our plugin in the ‘orddd_lite_my_custom_checkout_field_update_order_meta’ function which used to save the selected date of an order in the wp_postmeta table at the line number 1055.
The above function is present in the order_delivery_date.php file located in our plugin folder.
I am attaching a screenshot for your reference: https://screencast.com/t/JElluY2M9k
The line number is according to the latest version which is version 2.5.
Note: After making this custom changes, please do not update our plugin to the latest version as it will override all the custom changes made on your site.
If you want to update our plugin to the latest version then you will need to redo all the custom changes on your site.
Please let me know whether the provided information helped you to achieve your requirements.
Regards,
Komal Maru.