• Resolved Medical Writer

    (@scienterrif1c)


    Hi, I use Ultimate Member and have a custom login page.

    When enabling KEYY, I don’t see the QR or Wave key on this custom login screen.

    Is there a shortcode I can add to show the QR code? Thanks.

    The page I need help with: [log in to see the link]

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

    (@lumberhack)

    Hi there @scienterrif1c

    Keyy does not have a front end login shortcode as yet. It is designed to work with any system that hooks into the WP login flow. Looks like Ultimate Member is using something custom that does not load JS from Keyy.

    While they are not compatible, you should be able to use some code like below to force this to happen.

    
    add_action('um_after_login_fields', 'keyy_support');
    
    function keyy_support() {
    	global $keyy_login_plugin;
    	$keyy_login_plugin->enqueue_scripts('login');
    }
    

    Its not tested and if it does not work its best to check with the makers of Ultimate Shortcode. They will be the best judges of when to hook or better still if they can modify the front end form to queue the default login scripts like WP itself does.

    You can paste add this code to your site as shown here

    https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/

    Hi,

    We are marking this as resolved.

    If this is not the case please unresolve and reply here so we can help you with your issue.

    Best Wishes,

    Ashley

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Keyy with custom login page’ is closed to new replies.