Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author aviplugins.com

    (@avimegladon)

    In the plugin directory open the file named “login_afo_widget.php”
    Go to line number 69
    Here you can see the form structure like this.

    <ul class="login_wid">
    			<li>Username</li>
    			<li><input type="text" name="user_username" required="required"/></li>
    			<li>Password</li>
    			<li><input type="password" name="user_password" required="required"/></li>
    			<li><input name="login" type="submit" value="Login" /></li>
    			</ul>

    Here add your link for “forgot password”. Just replace the code with the code provided below.

    <ul class="login_wid">
    			<li>Username</li>
    			<li><input type="text" name="user_username" required="required"/></li>
    			<li>Password</li>
    			<li><input type="password" name="user_password" required="required"/></li>
    			<li><input name="login" type="submit" value="Login" /></li>
    <li><a href="<?php echo wp_lostpassword_url(); ?>" title="Lost Password">Forgot Password?</a></li>
    			</ul>
    Thread Starter Mareva

    (@cracoucas)

    Thank you!
    Just added: It makes the job!

    Best regards
    mareva

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Forgot password’ is closed to new replies.