• Resolved shakarum

    (@shakarum)


    Hi

    Stupid question –
    How do users can change their password, without going through “forgot password”?
    Is there a screen for that?

    Thanks

Viewing 13 replies - 1 through 13 (of 13 total)
  • Plugin Author Jeff Farthing

    (@jfarthing84)

    If they are already logged in, they can change their password on their profile.

    Thread Starter shakarum

    (@shakarum)

    do you mean wp-admin backend? It’s a WP page which we want to avoid, aren’t we?

    Plugin Author Jeff Farthing

    (@jfarthing84)

    Enable TML’s Themed Profiles module.

    Thread Starter shakarum

    (@shakarum)

    Yes! thanks.
    Is it possible to remove some of the so many social networks fields?

    Plugin Author Jeff Farthing

    (@jfarthing84)

    You can copy theme-my-login/templates/profile-form.php into your theme’s directory and edit it as you see fit.

    Thread Starter shakarum

    (@shakarum)

    Great. Will it be remained there upon theme update? Or do I need to create a child theme?

    Plugin Author Jeff Farthing

    (@jfarthing84)

    If you make a copy in your current theme’s directory, it would stay until you update the theme, I believe. Making a child theme and adding it would be the safest bet.

    Thread Starter shakarum

    (@shakarum)

    Ok, and another thing, I just noticed that there is no “password change” email template in the costume email module. How do I change that email?
    Thanks

    Plugin Author Jeff Farthing

    (@jfarthing84)

    That email has, unfortunately, not yet been added to TML. You would need to manually do this using the filters that WP provides.

    Thread Starter shakarum

    (@shakarum)

    Ok, thank you very much for your help, this is much appreciated.

    Thread Starter shakarum

    (@shakarum)

    Hi
    I opened profile-form.php and I don’t see there anything that is related to social networks. It probably takes the information from someplace else. Help?
    Thanks

    Plugin Author Jeff Farthing

    (@jfarthing84)

    You would want to remove this:

    
    <?php
    	foreach ( wp_get_user_contact_methods() as $name => $desc ) {
    ?>
    <tr class="tml-user-contact-method-<?php echo $name; ?>-wrap">
    	<th><label for="<?php echo $name; ?>"><?php echo apply_filters( 'user_'.$name.'_label', $desc ); ?></label></th>
    	<td><input type="text" name="<?php echo $name; ?>" id="<?php echo $name; ?>" value="<?php echo esc_attr( $profileuser->$name ); ?>" class="regular-text" /></td>
    </tr>
    <?php
    	}
    ?>
    
    Thread Starter shakarum

    (@shakarum)

    Thanks. Can it be removed by a snippet?

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Password change?’ is closed to new replies.