Home › Forums › Front-end Issues › Date output › Reply To: Date output
I’m having this same issue, trying to get the date to automatically display formatted like “Mon July, 29”.
If I use the code above, it breaks the page and nothing will load. Any thoughts on this? I love this plugin by the way!
Here is the code that I’m using. The “onsale” field is the Date Picker and I would like to reformat how it displays on the page. Thanks!
<?php
$onsale_date = strtotime(get_field(‘onsale’));
$now = time();
if ($onsale_date > $now) {
?>
On Sale
<?php
echo get_field( ‘onsale’ );
}
else { echo get_field( ‘price’ );
}
?>
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.