Banner Logo

Be a part of the family: Connect, Receive Support,
Contribute, and Reap Abundant Rewards!

Vendor Update resets user password

WCMp Advanced Frontend Manager

Resolved
Viewing 23 reply threads
  • Author
    Posts
    • #122162
      DragNfLy
      Participant

      Hi,

      I have tested this over and over. This is what is happening if a vendor has previously reset their password on my platform which does not use WCMp for user registration.

      In WCMP > Vendors > If I edit a Vendor information; – and click the red “UPDATE” button; – the vendor receives an email that their password has been reset.

      Somehow the user password in WCMp Vendor profile does not match the WordPress user password. My user passwd is 24 characters. Can this be the issue?

      Please help with this. I do not understand how this is possible.

      I look forward to hearing from you.

      Kind regards,
      Dale

    • #122196

      Dale, we did check this flow on our end, I am sorry but we didn’t find any such issue.

      We presume this issue is related to some plugin/theme conflict. Please proceed with the standard plugin/theme deactivation on your staging to check which plugin/theme is causing this on your end.

      Please do keep us posted.

    • #122205
      DragNfLy
      Participant

      Hi Moumita,

      I found the issue. On the Vendor Personal Information tab; – there is a password field with comment below “Keep it blank for not to update.”

      If i remove the password before updating the vendor Shipping tab; – then the password does not reset.

      The flow of this method is just not good at all. I need to update each vendors shipping and now before I update each vendor I will need to remove the password from the Personal Information tab first. This is a convoluted way of doing an update to Vendor Shipping and needs to be addressed I believe in WCMp.

      If I am updating Vendor Shipping; – Why is it updating Vendor Personal information as well?

      Anyways; – for now I need a fix and would rather the Password field be unset and removed from the Vendor Personal Information tab.

      Can you please provide code for the password field to be removed and I will test.

      I look forward to hearing from you.

      Kind regards,
      Dale

    • #122210
      lucas
      Participant

      This is happening as well with me. It should not reset the user password when updating vendor. In fact, I think you should remove password from this page. Leave it in user editing in wordpress.

    • #122212

      Hi, I am sorry but we are not able to reproduce the same on our end. These are the steps we followed :
      – Navigate to WCMp >> vendor and visited any vendor’s profile
      – Change the shipping settings from here http://scrgrb.in/w37

      AWe still didn’t receive any email. Can you please share the exact flow we need to follow.

      p.s. we don’t display password here : https://scrgrb.in/w35

    • #122229
      DragNfLy
      Participant

      Hi Moumita,

      OK from your screenshot I can see there is no password. I figured out that my Chrome Browser is entering a password here as in my screenshot attached.

      Not sure why Chrome is doing it. Perhaps the password field can be protected from browsers entering details here.
      This only happens on WCMp. I do not experience this with any other software.

      For now I would rather the Password field be unset and removed from the Vendor Personal Information tab.
      Can you please provide code for the password field to be removed and I will test. <<< Is this possible?

      I look forward to hearing from you.

      Kind regards,
      Dale

    • #122279

      @DragNfLy, we are using a default input type password field like this :
      Now WordPress, WooCommerce uses the same. So this is not a plugin-related issue.

      If you will goto WP-admin >> User and check the issue. It should be there too.

    • #122285
      DragNfLy
      Participant

      Hi Moumita,

      I beg to differ. This is not a user login or register form. Autocomplete/autofill needs to be turned off for the password field in this form.

      I look forward to hearing from you.

      Kind regards,
      Dale

    • #122287
      DragNfLy
      Participant

      I would very much like to remove the passwd field in this form. Please provide code for it to be unset

    • #122315

      Hi, add this code to remove the password field :

      /* please add this code in the function.php of the current active theme :*/
      add_filter("settings_vendors_personal_tab_options", "wcmp_remove_password_field");
      function wcmp_remove_password_field( $personal_tab_options ){
         unset($personal_tab_options['password']);
         return $personal_tab_options;
      }
      Copy
    • #122370
      DragNfLy
      Participant

      Hi Abhirup,

      Thank you very much. This solves the issue I was having.

      All the best.
      Dale

    • #122283
      DragNfLy
      Participant

      Hi Moumita,

      I beg to differ. This is not a user login or register form. Autocomplete/autofill needs to be turned off for the password field in this form.

      Hopefully the links provided will assist your dev team:

      https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion
      https://gist.github.com/niksumeiko/360164708c3b326bd1c8
      https://github.com/terrylinooo/disableautofill.js

      For now I would rather the Password field be unset and removed from the Vendor Personal Information tab.
      Can you please provide code for the password field to be removed and I will test. <<< Is this possible?

      I look forward to hearing from you.

      Kind regards,
      Dale

    • #122288
      DragNfLy
      Participant
    • #122290
      DragNfLy
      Participant
      This reply has been marked as private.
    • #122289
      DragNfLy
      Participant
    • #122286
      DragNfLy
      Participant

      Hopefully the links provided will assist your dev team:

      https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion
      https://gist.github.com/niksumeiko/360164708c3b326bd1c8
      https://github.com/terrylinooo/disableautofill.js

      I would very much like to remove the passwd field in this form. Please provide code for it to be unset

    • #122284
      DragNfLy
      Participant

      Hi Moumita,

      I beg to differ. This is not a user login or register form. Autocomplete/autofill needs to be turned off for the password field in this form.

      Hopefully the links provided will assist your dev team:

      https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion
      https://gist.github.com/niksumeiko/360164708c3b326bd1c8
      https://github.com/terrylinooo/disableautofill.js

      I would very much like to remove the passwd field in this form. Please provide code for it to be unset

      I look forward to hearing from you.

      Kind regards,
      Dale

    • #122403

      hi,
      Thanks for your suggestion. But we can’t do it. As you know that we completely follow the default structure. If you check HTML structure( WordPress /woo-commerce default ( not custom ) ) then always it default autocomplete on. Lots of people use this feature. For example, you are creating 5 vendors and want to give the same password. Everywhere this is the same where create and login features are present.
      Thanks.

    • #122410
      DragNfLy
      Participant

      Hi Raju,

      Ok no problem. I am glad the removal of the passwd field works for me.

      Sorry about all the re-posts of the suggestion; – The forum kept telling me that I had already said that and would not post so I tried different variations of my post. None of them posted until only 2 days later it seems.

      All the best.

      Kind regards,
      Dale

    • #122433

      Not an issue Dale.

      Also Dale, We would love it if you shared your experience by giving us 5/5 review here : https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/reviews/#new-post
      Seeing glowing reviews from existing customers makes others more comfortable knowing they’ll get the support they need should an issue with our services arise.

    • #122436
      DragNfLy
      Participant
      This reply has been marked as private.
    • #122437
      This reply has been marked as private.
    • #122440
      DragNfLy
      Participant
      This reply has been marked as private.
    • #125779

      You are welcome @Dale .

Viewing 23 reply threads

The topic ‘Vendor Update resets user password’ is closed to new replies.