Not sure if you can help but I have a question on using the Javascript Templating System for customizations.
I use ACF to store/retrieve custom values and one of those values is comma delimited
(e.g. “apple,banana,orange”). I can setup the array and can pass the data to the mobile.php (which I can echo out from there) but is it possible to split the values on the month side?
$get_fruit = get_field( ‘fruits’, $post );
$additional_values = array();
$additional_values[‘fruit’] = $get_fruit ;
Usually I can use php explode to divide them up but that doesn’t appear to work in the mobile.php unless I’m formatting the statement wrong. Or do I need to split the values out in the month single-event and send them individually?
I hope that makes sense.
Thank You.