• Resolved wesebo

    (@wesebo)


    Hi dear,

    In mail i am geting the date with “/” how can i change “/” with “.” !??
    10/07/2017 ==> 10.07.2017

    Best regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author mdalabar

    (@mdalabar)

    Hi,
    You can change date format as per your wish by applying PHP date_format function.
    Look for this piece of code in main file as
    get_post_meta( $order_id, 'byconsolewooodt_delivery_date', true )
    and now pass it through PHP date_format function like
    date_format($date,"m.d.Y");
    where the $date is as get_post_meta( $order_id, 'byconsolewooodt_delivery_date', true )
    or you can put it all together like
    date_format($date , get_post_meta( $order_id, 'byconsolewooodt_delivery_date', true ));
    Let me know if can get it done.
    Thanks

    Thread Starter wesebo

    (@wesebo)

    hi and thanks for reply,
    how can i change it as child? and i have to edit which php file?

    best regards

    Thread Starter wesebo

    (@wesebo)

    sorry dear but i did not get what i have to do can you please explain it?

    Best regards

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Date format’ is closed to new replies.