Benaceur
Forum Replies Created
-
Now, update the plugin to the latest version v5.0.1
- This reply was modified 3 weeks, 4 days ago by Benaceur.
The goal is simply to locate the problem. If the error message doesn’t appear, we’ll know exactly where the issue lies and can fix it in the next version.
Is the problem resolved after modifying the file?
edit this file in: wp-content\plugins\restrict-usernames-emails-characters\inc\functions.php
and in line 269 replace this:
$_email = $email;by:
$table = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = %s AND TABLE_NAME = %s ", $wpdb->dbname, $wpdb->prefix . 'signups' ) ); if ( empty( $table ) ) return false; $_email = $email;Thank you for your participation
To resolve this error (if one exists), I need more information, please:
Are you using: multi site or buddypress or buddyboss?
What are the plugin settings?
like:
- Choose language (characters) in username
- Solved the problem of not being able to register with certain languages
Is this ‘wp_signups’ table exists in your database?
Forum: Plugins
In reply to: [month name translation benaceur] A bugThank you, bug fixed + new option: “Disable month reset when changing language”.
Update now.
Forum: Plugins
In reply to: [month name translation benaceur] A bugyes there is a problem, I will try to solve it, thank.
I will fix compatibility issues with buddyBoss in the next release.
note: my plugin is based on the username (in BuddyBoss Nickname) and email in the process of registering a new member or updating a user’s profile, and not other fields like password and other …
1- in settings of plugin -> section “Settings of style” -> “Width of the title” increase width and in “Font size (title)” reduce font size
2- in settings of plugin -> section “Animation / effects” -> and disable: “Disable title (screen mobile)”.
- This reply was modified 1 year, 10 months ago by Benaceur.
I will fix this problem in the next version of the plugin.
for the moment edit this file:wp-content\plugins\restrict-usernames-emails-characters\classes\classe_val.php
and to the lines 86-87 replace this:
$__valid = $this->mu() || $_bp_signup_username ? true : $valid;
$_valid = $this->mu() || $_bp_signup_username ? $valid = true : $valid = false;by:
$__valid = $this->mu() || $this->bp() ? true : $valid;
$_valid = $this->mu() || $this->bp() ? $valid = true : $valid = false;- This reply was modified 1 year, 11 months ago by Benaceur.
Forum: Plugins
In reply to: [Restrict Usernames Emails Characters] Save button does not appearby default all characters are restricted in the username when registering, so make sure you don’t use anything else that allows characters, my plugin devloped to not allow.
this option “Prevent the use of characters (Symbols) permitted by wordpress” is to block these characters only:_ . - @which are authorized by wordpress, the plugin is compatible with: wp single – BuddyPress (single) – multisite.
I tested on BuddyPress:

yes, because priority is given to the message “This username is invalid because it uses illegal characters”, if the username contains unauthorized characters then priority has this error.
- This reply was modified 1 year, 11 months ago by Benaceur.
Forum: Plugins
In reply to: [Restrict Usernames Emails Characters] Save button does not appearif I understood your question correctly, the save button does not appear
so if this is the case, put this code in your “functions.php” file of active theme:
add_action('admin_head', function () {
echo '<style>input.button-BENrueeg_RUE_top {position: initial !important;}</style>';
});- This reply was modified 1 year, 11 months ago by Benaceur.
Forum: Plugins
In reply to: [Restrict Usernames Emails Characters] “block email domains” not workingprobably a conflict, try deactivating the plugins one by one and then see the result.
Forum: Plugins
In reply to: [Restrict Usernames Emails Characters] “block email domains” not workingMake sure you adjust the settings correctly:
https://i.ibb.co/YBtYwsf/Capture-d-cran-2024-06-25-190036.png
https://i.ibb.co/Tcq9Dj0/Capture-d-cran-2024-06-25-191239.png
Because I tried it and the option works perfectly.
- This reply was modified 1 year, 11 months ago by Benaceur.