entropea
Forum Replies Created
-
Lockouts stored in the DB table: wp_itsec_lockouts
So you need to run the following SQL query if using the free version, e.g:-
“delete from wp_itsec_lockouts;”
Forum: Plugins
In reply to: [Groups] Add groups as body classesTanks Kento, so the code looks like this:-
//add role and group classes to body for users add_filter('body_class', function($classes) { global $current_user; foreach ($current_user->roles as $user_role) { $classes[] = 'role-'. $user_role; } $groups_user = new Groups_User( get_current_user_id() ); foreach ($groups_user->group_ids as $user_group_id) { $classes[] = 'group-'. $user_group_id; } return $classes; });
Forum: Plugins
In reply to: [Theme My Login] Lost Password – All Password Reset Links InvalidIf not CACHE related, could be that anyone using Microsoft Outlook clients are not able to click the link. They have to copy and paste it, invariably WITH the stray HTML closure tag at the end.
wp-content/plugins/theme-my-login/includes/compat.php
Removing the stray ‘<‘ and ‘>’ from the above file on line 91 worked for us.
$message .= '' . network_site_url( "wp-login.php?action=rp&key=$key&login=" . rawurlencode( $user->user_login ), 'login' ) . "\r\n";
Also seeing this error. And in addition, anyone using Microsoft Outlook clients are not able to click the link. They have to copy and paste it, invariably WITH the stray HTML closure tag at the end.
wp-content/plugins/theme-my-login/includes/compat.php
Removing the stray ‘<‘ and ‘>’ from the above file on line 91 worked for us.
$message .= '' . network_site_url( "wp-login.php?action=rp&key=$key&login=" . rawurlencode( $user->user_login ), 'login' ) . "\r\n";