Community Support Forums — WordPress® ( Users Helping Users ) — 2010-09-14T15:05:22-05:00 http://www.primothemes.com/forums/feed.php?f=4&t=702 2010-09-14T15:05:22-05:00 http://www.primothemes.com/forums/viewtopic.php?t=702&p=3263#p3263 <![CDATA[Re: Password Reset -potential for confusion]]>
I can't find a way to replace the Wordpress functions retrieve_password() and reset_password() - is this even possible?

Cheers!

Robert

Statistics: Posted by Guest — September 14th, 2010, 3:05 pm


]]>
2010-09-14T13:11:20-05:00 http://www.primothemes.com/forums/viewtopic.php?t=702&p=3257#p3257 <![CDATA[Re: Password Reset -potential for confusion]]>
Just one slight issue with the process. The system will generate a system generated password that allows you to login to member site, but they will want to change the password to one they can remember.. I don't want them to go to the backend of wordpress to the user profile as this looks terrible,and is again confusing. Is there any script that can be used to reset their password once logged in. If so we then have cracked it!!

Statistics: Posted by condonp — September 14th, 2010, 1:11 pm


]]>
2010-09-14T11:35:55-05:00 http://www.primothemes.com/forums/viewtopic.php?t=702&p=3253#p3253 <![CDATA[Re: Password Reset -potential for confusion]]> Statistics: Posted by condonp — September 14th, 2010, 11:35 am


]]>
2010-09-10T03:07:23-05:00 http://www.primothemes.com/forums/viewtopic.php?t=702&p=3164#p3164 <![CDATA[Re: Password Reset -potential for confusion]]>
I will try this, could you laso answer the questions as to why on the login screen the username and password still show up. I have tried this on your site and others and this seems to be clear is this related to a cookie or cache setting that needs to be invoked to ensure that any previous login is cleared.

Statistics: Posted by condonp — September 10th, 2010, 3:07 am


]]>
2010-09-10T01:15:47-05:00 http://www.primothemes.com/forums/viewtopic.php?t=702&p=3155#p3155 <![CDATA[Re: Password Reset -potential for confusion]]> Hi there. Thanks for your inquiry.

All of this functionality is built into WordPress®. However, if you'd like to change it, you could do something like this. Place this file into your /wp-content/mu-plugins/ directory.

/wp-content/mu-plugins/my-s2member-hacks.php
Code:
<?php
add_filter 
("ws_plugin__s2member_login_header_styles", "my_login_styles");
function my_login_styles ($s)
    {
        $s .= '<style type="text/css">';
        $s .= (isset($_GET["checkemail"])) ? 'form#loginform { display:none; }' : '';
        $s .= '</style>';
        /**/
        return $s;
    }
?>

If you don't have an /mu-plugins/ directory, create one.
/mu-plugins/ = Must Use Plugins ( these will be autoloaded )

Statistics: Posted by Jason Caldwell — September 10th, 2010, 1:15 am


]]>
2010-09-09T00:34:25-05:00 http://www.primothemes.com/forums/viewtopic.php?t=702&p=3077#p3077 <![CDATA[Password Reset -potential for confusion]]>
On password reset when it takes me to the s2 members log in and asks for my e-amil OK
Enter in e-mail

1) The screen then shows username and password with message "Check your e-mail for the confirmation link."
- Is it possible on this link to get ride of username and password fields in this screen as there is a danger that the user will not read the important message and get confused by trying to enter in existing password?

2) Then when I click on the link, it takes me to the login screen where I have a message "Check your e-mail for your new password." again the two fields username and password are present which again causes confusion can we get ride of these for this screen?
Currently the original username and password also show here (the original cache?) which also adds to potential confusion how do I get ride of this so that these original entries are clear?

Statistics: Posted by condonp — September 9th, 2010, 12:34 am


]]>