Support

Account

Home Forums Bug Reports Auto BR is broken? Reply To: Auto BR is broken?

  • Here’s my temporary workaround until the developer issues a plugin fix.

    In my template, where I insert the value of the textarea, I insterted a PHP nl2br().

    $my_textarea = get_post_meta(...);
    
    //echo $my_textarea; // instead of this
    
    echo nl2br($my_textarea); // do this