Title: BUGG ON FORMINATOR ADDITIONAL SETTING
Last modified: February 23, 2022

---

# BUGG ON FORMINATOR ADDITIONAL SETTING

 *  Resolved [ziyad87](https://wordpress.org/support/users/ziyad87/)
 * (@ziyad87)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/bugg-on-forminator-additional-setting/)
 * Hi there,
 * I juts installed and setup Forminator plugin (free plan). Then I noticed there
   is a bugg on Forminator > Edit Form > User Registration > Additional Settings
   > Enable Hide the form if a user is already logged in > Message (optional)
 * So bugg is:
 * When I insert link, bold and italic the message then click update, the message
   is not change on my website. The message just plain. No inserted link, bold and
   italic
 * The problem happend on login dan register form.
 * Appreciate your help. Thank you
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fbugg-on-forminator-additional-setting%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  Plugin Support [Nithin – WPMU DEV Support](https://wordpress.org/support/users/wpmudevsupport11/)
 * (@wpmudevsupport11)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/bugg-on-forminator-additional-setting/#post-15399050)
 * Hi [@ziyad87](https://wordpress.org/support/users/ziyad87/),
 * Thanks for reporting, the issue will be resolved in the next release. In the 
   meanwhile, you can try the following snippet as a workaround to make it work.
 *     ```
       <?php
   
       add_filter( 'sanitize_text_field', 'wpmudev_allow_html_tag', 10, 2 );
       function wpmudev_allow_html_tag( $filtered_data, $original_data ){
       global $post;
       if ( is_a( $post, 'WP_Post' ) && !has_shortcode( $post->post_content, 'forminator_form' ) ) {
       return $filtered_data;
       }
       return wp_kses_post( $original_data );
       }
       ```
   
 * The above code can be added as a mu-plugins. Please check this link on how to
   implement the above code as a mu-plugins:
    [https://wpmudev.com/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins](https://wpmudev.com/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins)
 * Kind Regards,
    Nithin
 *  Plugin Support [Amin – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support2/)
 * (@wpmudev-support2)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/bugg-on-forminator-additional-setting/#post-15415699)
 * Hello [@ziyad87](https://wordpress.org/support/users/ziyad87/) ,
 * We haven’t heard from you for some time now, so it looks like the workaround 
   worked for you.
 * Feel free to re-open this ticket if needed.
 * Kind regards
    Kasia

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

The topic ‘BUGG ON FORMINATOR ADDITIONAL SETTING’ is closed to new replies.

 * ![](https://ps.w.org/forminator/assets/icon-256x256.gif?rev=3443182)
 * [Forminator Forms – Contact Form, Payment Form & Custom Form Builder](https://wordpress.org/plugins/forminator/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/forminator/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/forminator/)
 * [Active Topics](https://wordpress.org/support/plugin/forminator/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/forminator/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/forminator/reviews/)

## Tags

 * [insert link](https://wordpress.org/support/topic-tag/insert-link/)
 * [message field](https://wordpress.org/support/topic-tag/message-field/)

 * 2 replies
 * 3 participants
 * Last reply from: [Amin – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support2/)
 * Last activity: [4 years, 3 months ago](https://wordpress.org/support/topic/bugg-on-forminator-additional-setting/#post-15415699)
 * Status: resolved