Support

Account

Home Forums ACF PRO Illegal string offset Reply To: Illegal string offset

  • @hube2 Thanks once again for your help, but I have noticed another ‘bug’ the Wysiwyg Editor fields don’t seem to be displaying content with paragraph tags anymore either with the activation of the filter plugin.

    I currently have the call looking like this …

    the_field(‘column_1′, $term);

    // $term = $taxonomy.’_’.$term_id to get the correct category content

    I found this http://goo.gl/Y8Jw5E and tried reversing it like this …

    the_field(‘column_1’, true, true, $term);

    But that broke it 🙁

    but I tried this and it worked …

    $wysiwyg = get_field('column_1', $term);
    echo apply_filters('the_content', $wysiwyg);

    I hope this may help others in the future.