密碼重設連結無效

密碼重設連結無效

正在查看 8 个帖子:1-8 (共 8 个帖子)
  • 作者
    帖子
  • XingGu
    • 文章数量: 297
    @xinggu0918
    楼主

    您好,

    我新增使用者之後, 新使用者在電子郵件中有收到郵件, 並點擊信中的鏈結, 之後就一直跳出下圖的樣子, 無法修改密碼, 可否協助解決, 謝謝!?

    诗语
    管理员
    • 文章数量: 5,908
    @feibisi

    我们没用系统自带的找回密码功能,尝试下 um.weixiaduo.com 这个可以发送自定义的邮件过去。

    XingGu
    • 文章数量: 297
    @xinggu0918
    楼主

    您好,

    1. 我這是新增使用者之後, 使用者的信箱就會收到信件, 信件中就會有鏈結, 鏈結點下去就變這樣.

    2. 我要如何嘗試 um.weixiaduo.com 这个可以发送自定义的邮件, 謝謝!

    诗语
    管理员
    • 文章数量: 5,908
    @feibisi

    后台插件=安装插件里面搜索

    MASS Users Password Reset

    https://wenpai.org/plugins/mass-users-password-reset/

    Frontend Reset Password

    https://wenpai.org/plugins/frontend-reset-password/

    这两个选一个使用吧,要简单得多。

    XingGu
    • 文章数量: 297
    @xinggu0918
    楼主

    您好,

    有哪一套是有中文化的嗎!?

    謝謝!

    XingGu
    • 文章数量: 297
    @xinggu0918
    楼主
    此回复已被标记为私有,🔒 仅楼主及管理员可见。
    诗语
    管理员
    • 文章数量: 5,908
    @feibisi

    如果目的只是为了禁用添加新用户的邮件通知,把下面的代码添加到主题或子主题的 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);
    }

    其他的先试试看吧,可以付费处理的,

    XingGu
    • 文章数量: 297
    @xinggu0918
    楼主

    您好,

    後來發現和 Cookie 有關係, 所以建立了 Cookie 白名單就解決了, 謝謝你的協助!

    已解決

正在查看 8 个帖子:1-8 (共 8 个帖子)
  • 哎呀,回复话题必需登录。

话题信息