Support

Account

Home Forums ACF PRO Allow shortcodes to process in ALL custom fields Reply To: Allow shortcodes to process in ALL custom fields

  • Only the WYSIWYG Editor is capable of interpreting Shortcodes, else you have to echo the shortcode

    
    $shortcode = get_field('shortcode');
    echo do_shortcode(' . $shortcode . ');

    Cheers
    Johannes