- 該話題包含 7 個回覆,2 人蔘與,最後由
XingGu 更新於 4 年、 11 月前 。
正在查看 8 個帖子:1-8 (共 8 個帖子)
-
作者帖子
-
您好,
我新增使用者之後, 新使用者在電子郵件中有收到郵件, 並點擊信中的鏈結, 之後就一直跳出下圖的樣子, 無法修改密碼, 可否協助解決, 謝謝!?
我們沒用系統自帶的找回密碼功能,嘗試下 um.weixiaduo.com 這個可以發送自定義的郵件過去。
您好,
1. 我這是新增使用者之後, 使用者的信箱就會收到信件, 信件中就會有鏈結, 鏈結點下去就變這樣.
2. 我要如何嘗試 um.weixiaduo.com 這個可以發送自定義的郵件, 謝謝!
後台插件=安裝插件裏面搜索
MASS Users Password Reset
https://wenpai.org/plugins/mass-users-password-reset/
Frontend Reset Password
https://wenpai.org/plugins/frontend-reset-password/
這兩個選一個使用吧,要簡單得多。
您好,
有哪一套是有中文化的嗎!?
謝謝!
此回覆已被標記為私有,🔒 僅樓主及管理員可見。如果目的只是為了禁用添加新用户的郵件通知,把下面的代碼添加到主題或子主題的 function.php 底部,然後保存即可:
// To Disable Default Notification to Admin from New User Registration remove_action( 『register_new_user』, 『wp_send_new_user_notifications』 ); remove_action( 『edit_user_created_user』, 『wp_send_new_user_notifications』, 10 ); add_action( 『register_new_user』, 『mytheme_wp_send_new_user_notifications』, 10, 2 ); add_action( 『edit_user_created_user』, 『mytheme_wp_send_new_user_notifications』, 10, 2 ); function mytheme_wp_send_new_user_notifications( $user_id, $notify = 『user』 ) { switch($notify) { case 『admin』: $notify = 『none』; break; case 『both』: $notify = 『user』; break; } wp_new_user_notification($user_id, null, $notify); }
其他的先試試看吧,可以付費處理的,
您好,
後來發現和 Cookie 有關係, 所以建立了 Cookie 白名單就解決了, 謝謝你的協助!
已解決
-
作者帖子
正在查看 8 個帖子:1-8 (共 8 個帖子)
- 哎呀,回覆話題必需登錄。