• Resolved ziyad87

    (@ziyad87)


    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 to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Nithin – WPMU DEV Support

    (@wpmudevsupport11)

    Hi @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

    Kind Regards,
    Nithin

    Plugin Support Amin – WPMU DEV Support

    (@wpmudev-support2)

    Hello @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.