תוסף זה לא נבדק ב-3 הגרסאות הראשיות האחרונות של וורדפרס. ייתכן והתוסף כבר לא מתוחזק או נתמך על ידי יוצריו, וייתכן שיהיו לו בעיות תאימות בגרסות וורדפרס עדכניות יותר.

שליחה חוזרת של אימייל הצטרפות

תיאור

This tool was developed to quickly send a user a new password reset link via email when they are having trouble logging in.

מפתחים ומעצבים

This extension has a public GitHub page where users can contribute fixes and improvements.

עיזרו לפתח בגיטהאב

עקבו אחרי המפתח בטוויטר

תורמים

Tibor Repček – translation into slovak language (slovenčina)

התקנה

  1. Upload resend-welcome-email folder to the /wp-content/plugins/ directory
  2. יש להפעיל את התוסף דרך התפריט ’תוספים‘ בוורדפרס

שאלות נפוצות

הוראות התקנה
  1. Upload resend-welcome-email folder to the /wp-content/plugins/ directory
  2. יש להפעיל את התוסף דרך התפריט ’תוספים‘ בוורדפרס
האם אתם מספקים תמיכה לתוסף זה?

Not really. Please open an issue on GitHub though if you have a problem. I am keeping track with pull requests so fire away.

סקירות

11 באוגוסט 2018
Since I set up new members/users through the database, they do not register so the welcome email is not triggered to send. With this simple plugin, I can send/resend the welcome emails manually from the Users record. Regarding a rating/comment about the reset password link not being set, please note that this plugin does not affect the content of the email. For that you will need to customize the email either through coding or another plugin. https://wordpress.org/plugins/tags/welcome-email/
2 במאי 2018
Put into the separate column a button I do not understand in programming - did as I knew - added to the end of the plugin (before "}") //* ==START== Колонка в пользователях для просмотра АКТИВИРОВАННІХ EMAIL *// add_filter( 'manage_users_columns', 'reg_confirm_column_0001' ); function reg_confirm_column_0001( $column ) { $column['reg_confirm_column'] = 'Статус Регистрации'; return $column; } // создаем новую колонку // Колонка только создается и будет пустая add_filter('manage_users_columns', 'reg_confirm_column_add_0002', 4); function reg_confirm_column_add_0002( $columns ){ $num = 3; // после какой по счету колонки вставлять новые $new_columns = array( 'reg_confirm_column' => 'Статус Регистрации', ); return array_slice( $columns, 0, $num ) + $new_columns + array_slice( $columns, $num ); } // заполняем колонку данными add_filter( 'manage_users_custom_column', 'reg_confirm_column_add_data_0003', 10, 3 ); function reg_confirm_column_add_data_0003( $val, $column_name, $user_id ){ // global $wpdb; $user_info = get_userdata($user_id); switch ($column_name) { case 'reg_confirm_column' : if ($user_info->user_activation_key){ $link = esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'resend_welcome_email', 'user_id' => $user_id, ), '' ), "send_welcome_email_{$user_id}" ) ); return "Не Активирован <a href=" .$link .">Send New Welcome</a>"; }else{ return "Активирован "; } break; default: } return $val; } //* ==END== Колонка в пользователях для просмотра АКТИВИРОВАННІХ EMAIL *//
2 במרץ 2018
Adds a link to user commands in the Users list "resend welcome email". Did exactly what was expected of it, perfect. Thanks
3 בספטמבר 2016
I'm not a programmer or anything like that so i just look at the functionality and does it work and for what i needed it worked brilliantly - great plugin, thanks.
3 בספטמבר 2016 1 reply
This sends the emails, but unfortunately they are missing the link to reset the password; it's just blank where the url should be.
קראו את כל 10 הסקירות

מפתחים

"שליחה חוזרת של אימייל הצטרפות" הוא תוסף קוד פתוח. האנשים הבאים תרמו ליצירת התוסף הזה.

תורמים

“שליחה חוזרת של אימייל הצטרפות” תורגם ל-6 שפות. תודה רבה למתרגמים על תרומתם.

ניתן לתרגם את "שליחה חוזרת של אימייל הצטרפות" לשפה שלך.

מעוניינים בפיתוח?

עיינו בקוד, ראו את הקוד ב-SVN repository, או הירשמו ללוג פיתוח באמצעות RSS.

שינויים

1.1.9

  • Adding fr_FR translations (shoutout to Thibaut Ninove)
  • Fixing i18n support

1.1.8

  • Improving labels
  • Removing commented code

1.1.3

  • Updating 'Tested up to' in readme.txt

1.1.2

  • Adding language files sk_SK.po, sk_SK.mo

1.1.1

  • Adding resend welcome email to user row action link.
  • Converting edit_user to edit_users to fix soft error.

1.1.0

  • Security: Escape translated strings.
  • ארגון הקוד מחדש.
  • תיקון לוגיקה בהתראות.
  • הוספת תמיכה ברשת אתרים.

1.0.3

  • אבטחה: מניעת גישה ישירה לקבצי PHP.
  • אבטחה: מניעת גישה ישירה לתיקיות.
  • i18n: שימוש במנגנון translate.wordpress.org לתרגום התוסף לשפות אחרות.

1.0.2

  • wp_new_user_notification() stopped sending passwords via email, and instead it sends a reset password link.

1.0.1

  • גרסה ראשונית.