• I’m running into a couple of problems with this plugin.

    1. The password strength field on the profile page doesn’t seem to work. Firebug reports: $(“#pass1”).simplePassMeter is not a function

    And yet I cannot find anything wrong. I’ve unloaded and reloaded several different plugins that I thought might be interfering but nothing seems to make a difference.

    2. When a user updates their password, rather than simply updating the database, the user is logged out. To me, this is an unexpected behavior — you should be able to simply update your password without being logged out in the process.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author dulabs

    (@dulabs)

    1. On my site PassMeter works well. Maybe, javascript not load well on your website.

    2. Thanks, I will investigate this later.

    I was experiencing the same problem, found this thread through google while searching for a fix. I figured out the prob, and I just wanted to add the solution here in case anyone else stumbles across it.

    fep.js Before:

    $(document).ready(function(){
            if($ == undefined){
     $ = jQuery;
     }
    
    	$('#pass1').simplePassMeter({
    	  'showOnValue': true,
    	  'Container': '#pass-strength-result'
    	});
    
    	$('#pass-strength-result').hide();
    
    });

    fep.js After:

    jQuery(document).ready(function(){
    
    	jQuery('#pass1').simplePassMeter({
    	  'showOnValue': true,
    	  'Container': '#pass-strength-result'
    	});
    
    	jQuery('#pass-strength-result').hide();
    
    });

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Frontend Edit Profile] Issues with password reset and password strength fields’ is closed to new replies.