Author Topic: Code Replacement - Date in Specific Format  (Read 297 times)

Offline Old timer

  • Member
  • **
  • Posts: 54
    • View Profile
Code Replacement - Date in Specific Format
« on: April 27, 2024, 09:58:24 PM »
Hi Kirk,

If I use this code ... {date} ... it will add the date (but not in the format I require).

How do I change the format of the date to "January 22, 2024" ?


Offline ahoward

  • Camera Bits Staff
  • Hero Member
  • *****
  • Posts: 802
    • View Profile
Re: Code Replacement - Date in Specific Format
« Reply #1 on: April 30, 2024, 08:56:51 AM »
Date returns the date in whatever format your operating system is set to.

Use:
{monthname} {day}, {year4}

Offline Old timer

  • Member
  • **
  • Posts: 54
    • View Profile
Re: Code Replacement - Date in Specific Format
« Reply #2 on: May 07, 2024, 08:58:04 AM »
Hi ahoward,
Works great.
Thank you!