• Resolved kocakserdar7

    (@kocakserdar7)


    Hi friend,

    Firstly, Thank you for providing this awesome plugin.

    Keyy is not working with ” Coming soon & Maintenance Mode ” plugin.
    And If cache is enabled with coming soon plugin, People may not access their administration panel.

    Plugin: https://ww.wp.xz.cn/plugins/coming-soon/

    Thank you!

Viewing 1 replies (of 1 total)
  • LumberHack

    (@lumberhack)

    Hi there @kocakserdar7

    The coming soon plugin is incompatible with Keye because it redirects all requests using the template_redirect tag before Keyy is loaded.

    That said you can try code like this as a workaround

    
    function keyy_support( $form_part, $args ){
    
    	global $keyy_login_plugin;
    	$keyy_login_plugin->enqueue_scripts('login');
    
    	return $form_part;
    }
    add_filter( 'plugins_loaded', 'keyy_support', 9999, 2 );
    

    Once the site is ready to go live you can remove it. For more information on how to add this code click here

    • This reply was modified 8 years ago by LumberHack.
Viewing 1 replies (of 1 total)

The topic ‘Bug Report’ is closed to new replies.