Hi,
I have a checkboxes group to multiple choices.
In email template I use - {data:cr_checkboxes14[]}
When I received email I see like this: ["Ads on vechile","Indoor Ads"]
How I can output values without any signs, like this: Ads on vechile, Indoor Ads ?
Thanks
Yury
I have a checkboxes group to multiple choices.
In email template I use - {data:cr_checkboxes14[]}
When I received email I see like this: ["Ads on vechile","Indoor Ads"]
How I can output values without any signs, like this: Ads on vechile, Indoor Ads ?
Thanks
Yury
Two ways.
Don't copy+paste code from the forums.
{data.join[, ]:cr_checkboxes14}Or
<?php echo implode(", ", $this->data("cr_checkboxes14, "")); ?>
Don't copy+paste code from the forums.
This topic is locked and no more replies can be posted.