• This is a cool little plugin. Works well. Thank you.

    I just spent some time customizing it for my site and thought others might want to do the same. Heres what I did (but please note, Im not a coder so didn`t test it on 37 browsers, 19 mobile phone models, 5 operating systems, or run NSA security measures against it 🙂

    Oh ya… and the solid green border is just so people can easily see what`s happening.
    If you`re not sure, it goes in the Custom CSS box…or use the handy “Snippets” plugin.
    Hope it helps.

    The below tweaks
    . border
    . padding
    . shadow
    . background color
    . field radius (those rounded corners)

    legend {
    padding: 10px!important;
    border: 5px solid green;
    }

    fieldset {
    border: 2px solid #eaeaea;
    margin: 0 0 0 0px;
    padding: .35em .625em .75em;
    background-color: #ffffff!important;
    border-radius:7px;
    box-shadow:0 0 10px #999;
    }

    input[type=text] {
    background-color: #fafafafa;
    color: #f5424e;
    border: 2px solid #555;
    border-color:#dddddd!important;
    }

    input[type=text]:focus {
    border: 2px solid #fafafafa;
    }

Viewing 1 replies (of 1 total)
  • Thread Starter newguy321123

    (@newguy321123)

    Oh ya…if you want the link that comes in the email to expire (which involves WordPress, not really the plugin)…this works.

    Just add it to your functions.php (best if in Child Theme) or use the handy Snippets plugin.

    Replace NUMBER_OF_SECONDS with a time limit that is expressed in seconds.

    For example…
    60 = would mean the link expires 1 minute later
    3600 = 1 hour later
    86,400 = 24 hrs later
    31,536,000 = 1 year later
    etc…

    add_filter( ‘password_reset_expiration’, function( $expiration ) {
    return NUMBER_OF_SECONDS;
    });

    If the link is used after it has expired is
    That key has expired. Please reset your password again.

    It shows on the Password Reset page.

Viewing 1 replies (of 1 total)

The topic ‘Tips for customizing it.’ is closed to new replies.