Support

Account

Home Forums General Issues Using a shortcode in a text module Reply To: Using a shortcode in a text module

  • You should use do_shortcode().

    Just wrap all your content inside this function.

    change:

    the_field('my_text');

    to:

    echo do_shortcode(get_field('my_text'));