Support

Account

Home Forums General Issues Remove commas (checkbox) Reply To: Remove commas (checkbox)

  • Thank you @hube2

    I managed to remove the commas, but now it returns the values x 5…

    This is the code:

    `<p class=”shop-link”>
    <?php $values = get_field(‘shop’);

    if ($values) {
    foreach ($values as $value) {
    echo implode(‘<br />’, $values);
    }
    } ?></p>
    `