• Resolved robstyrrell

    (@robstyrrell)


    Hi,

    How do I make the delivery date bigger (larger font) on the New Order email?

    Thanks,
    Rob

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Support chetnapatel

    (@chetnapatel)

    Hi @robstyrrell,

    Currently, there is no direct way in our plugin to change the font size of delivery date field that appears in the email template. However, you can override the email template from WooCommerce > Settings > Email section and fetch the delivery date and time using the meta key and customize it as per your requirement.

    You can use ” _orddd_lite_timestamp ” meta key which stores the delivery date in timestamp format. Also, you should be able to fetch the delivery date using the ‘Delivery Date’ field label set in the plugin’s setting. The date field label is the meta key.

    For eg,
    $delivery_date = get_post_meta( $order_id. ‘Delivery Date’, true); or
    $delivery_date = get_post_meta( $order_id, ‘_orddd_lite_timestamp’, true);

    Do let me know whether this information helped you.

    Regards,
    Chetna Bhutka

Viewing 1 replies (of 1 total)
  • The topic ‘Delivery Date in Emails’ is closed to new replies.