• Resolved asterioskma

    (@asterioskma)


    Dear team,

    first, thank you for this wonderful plugin!

    I created a form for users to login and at the bottom there is the option to send the password (forgot password?).
    In the preview the link is there but in my site the link looses its function and it is only some text.

    I have tried to use the shortcode with the Gutenberg editor, switched to default theme but stil.

    Could you please help me with that?

    Thank you
    Asterios

    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 @asterioskma,

    I’m afraid, this seems to be a bug that is already reported. Our developers are already working on a fix regarding this, until that you can try the following workaround:

    <?php
    
    add_action( 'wp_ajax_forminator_save_builder', function(){
    	add_filter( 'sanitize_text_field', function( $filtered, $str ){
    		return wp_kses_post( $str );
    	}, 10, 2 );
    }, 9 );

    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

    Once you add the above code, you’ll have to re-save the “Password” field as shown in the following screenshot which should ensure the links works fine again:
    Screenshot from 2021-10-21 17-47-24.png

    Regards,
    Nithin

    Thread Starter asterioskma

    (@asterioskma)

    Hello Nithin,

    thank you for the fast reply and the help provided!

    I will try the solution as suggested.

    Best Regards
    Asterios

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Links in Login forms not working’ is closed to new replies.