Login and Password Reset form not showing
-
I am using wordpress 5.6.4 with Youzer plugin(Version 2.5.1). Recently the login and password reset forms are not getting displayed in the site. When I print the current template using the following code I can see that the single.php template is loaded instead of the template from the plugin.
global $template; print_r( $template );
When I checked, I found that the logy_template() method in the wp-content\plugins\youzer\includes\logy\includes\public\core\functions\logy-general-functions.php is not called. It looks like the add filter call is not getting triggered.
add_filter( 'page_template', 'logy_template', 10 );
How do I fix this?
- The topic ‘Login and Password Reset form not showing’ is closed to new replies.