Viewing 1 replies (of 1 total)
  • 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 6 years, 9 months ago by LumberHack.
Viewing 1 replies (of 1 total)
  • The topic ‘Bug Report’ is closed to new replies.