Hi,
I created this field: https://prnt.sc/13ckvsd
but right now on front end it shows only the value and I would like it to be label+value (ex: Availability Date: August 29, 2021)
Found this: https://www.advancedcustomfields.com/resources/get_field_object/ but I don’t know how to make it work.
Please help,
Thank you
$value = get_field('availability_date');
$field = get_field_object('availability_date');
echo $field['label'].': '.$value;