- 该话题包含 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 个帖子)
- 哎呀,回复话题必需登录。