Other Languages Versions CANNOT work
-
Hi,
Just to tell that your plugin CANNOT work on a translated WordPress Site in French or Russian.
As a matter of fact, I found errors in “includes/admin.php”.
Line 68 :
if ( $action == "Deny" ) {
has to beif ( $action == __( "Deny", 'bp-registration-options' ) ) {
Line 71 :
if ( $action == "Approve" ) {
has to beif ( $action == __( "Approve", 'bp-registration-options' ) ) {
Same thing at Lines 83 and 88
Furthermore, your plugin CANNOT send email to user….
As a matter of fact, there is an error, in the same file, at line 82 :
$user = get_userdata( $user_id );
should be$user = get_userdata( $user_id )->data;
Thanks
Julien
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Other Languages Versions CANNOT work’ is closed to new replies.