Great that somebody actually tests their releases before they break stuff…
Anyway this is the error:
Notice: Undefined variable: wp_query in /wp-content/plugins/theme-my-login/includes/class-theme-my-login.php on line 264
Fatal error: Uncaught Error: Call to a member function is_main_query() on Null
TO FIX THIS IS EASY:
This is a typo in class-theme-my-login.php file the variable should be $query not $wp_query….
open file: theme-my-login/includes/class-theme-my-login.php
go to line 264…
edit:
// Bail if not the main query
if ( ! $wp_query->is_main_query() )
return;
change to:
// Bail if not the main query
if ( ! $query->is_main_query() )
return;
-
This reply was modified 7 years, 9 months ago by marketsys.
-
This reply was modified 7 years, 9 months ago by marketsys.