Hi Vibe
In the login widget on the top header, the forgot password "tip" is pointing to a wrong URL: http://edroitedu.com/wp-login.php?action=lostpassword&redirect_to=http://edroitedu.com/ . Basically adding the & redirect is not needed. Please let me know how can I change it
This parameter is to redirect the user back to the page where she have clicked on the "Lost password" .
If you want to remove this parameter then you need to edit the your theme file .
Please edit the file wp-content/themes/wplms/includes/widgets/custom_bp_widgets.php .
In that file find " wp_lostpassword_url " function and remove the get_permalink inside the wp_lostpassword_url function do that the line .
<label><?php _e( 'Password', 'vibe' ); ?> <a href="<?php echo wp_lostpassword_url( get_permalink() ); ?>" tabindex="5" class="tip" title="<?php _e('Forgot Password','vibe'); ?>"><i class="icon-question"></i></a><br />
become this :
<label><?php _e( 'Password', 'vibe' ); ?> <a href="<?php echo wp_lostpassword_url(); ?>" tabindex="5" class="tip" title="<?php _e('Forgot Password','vibe'); ?>"><i class="icon-question"></i></a><br />