I’m using the Estimated Delivery Date Per Product for WooCommerce plugin and noticed that the estimated delivery date shows the month name in English (e.g., “November” instead of “Noviembre”).
Could you please let me know how to change the month language so it displays in Spanish?
Thanks in advance for your help—I look forward to any instructions you can provide.
Best regards,
Christian
]]>How can I change the date format validation? first day, second month, third year.
]]>When I try to change the date format using the code:
add_filter(‘wf_pklist_alter_order_date’, ‘wt_pklist_change_order_date_format’, 10, 3);
function wt_pklist_change_order_date_format($order_date, $template_type, $order)
{
/* new date format */
return?date(“Y-m-d”,strtotime($order_date));
}
Change : return?date(“d/m/y“,strtotime($order_date));
It returns 01/01/1970 instead of the actual date.
How can I fix this ?
Thanks
]]>Does anyone know how to change the date/time format on the booking confirmation page and in the confirmation email?
I would like this:
augustus 30, 2024 om 2:00 pm
To change into this:
30 augustus 2024 om 14:00
Thank you!