Hi, I’m using the Date Picker to set up events. Both a Start Date and End Date picker are implemented, I’d like to hide the End Date if it is the same as the Start Date. Is this possible?
Best
$start_date = get_field('start_date');
$end_date = get_field('end_date');
echo $start_date;
if ($end_date != $start_date) {
echo ' to ',$end_date;
}