Support

Account

Home Forums Add-ons Repeater Field Editor Wysiwyg in Repeater field br instead of p elements

Helping

Editor Wysiwyg in Repeater field br instead of p elements

  • Hello,

    I was wondering if it’s possible to render Wysiwyg editor content in Repeater field to use br elements instead of p elements?

    Also, when I render HTML and delete p elements after saving they are all back. How can I make the editor work with the specified HTML rather than it adding extra HTML?

    Many thanks,
    Dasha

  • Hi @dashaluna

    The WP WYSIWYG automatically adds in p tags when the value is returned by the get_field function.

    This is due to the filters which are run on the WYSIYWG field value which follow the same rules as the standard WP the_content.

    To get around the issue, you can load the value without any formatting like so:

    
    the_field('field_name', false, false);
    

    The 3rd false tells ACF to not format the value.

    Hope that helps.

Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘Editor Wysiwyg in Repeater field br instead of p elements’ is closed to new replies.