Joy

Forum Replies Created

Viewing 15 posts - 31 through 45 (of 49 total)
  • Author
    Posts
  • in reply to: Change Password Link #622

    Joy
    Buyer
    Post count: 1076

    Thank you again.

    When I test this out. I am getting an “Invalid Key” when I try to use the reset password link. Should I open another post topic for this?

    in reply to: Change Password Link #620

    Joy
    Buyer
    Post count: 1076

    Probably. I tend to overthink things to death.

    Can you please tell me where the change password notification text is set? I can’t locate it.

    in reply to: Change Password Link #618

    Joy
    Buyer
    Post count: 1076

    Lol! I don’t know why I didn’t think of that.

    Thank you.

    in reply to: Password change question #591

    Joy
    Buyer
    Post count: 1076

    I thought they would be linked to the reset password if they forgot their password?

    in reply to: Username Privacy #582

    Joy
    Buyer
    Post count: 1076

    Just wanted to update in case anyone else was interested in this feature. I added a code snippet to achieve this. So instead of John Doe members names on the front-end will appear at John D.:

    
    
    add_action( 'admin_init', 'fix_display_name' );
    function fix_display_name() {
    	$users = get_users();
    	foreach( $users as $user ){
    		if( $user->first_name != '' && $user->last_name != '' ){
    			$display_name = $user->first_name . ' ' . substr( $user->last_name, 0, 1 ) . '.';
    			wp_update_user(
    				array(
    				      'ID' => $user->ID,
    				      'display_name' => $display_name
    				      )
    			);
    		}
    	}
    }
    
    add_action( 'admin_head', 'hide_profile_field' );
    function hide_profile_field() {
        ?>
        <script type="text/javascript">
        jQuery(function($) {
            $('.user-nickname-wrap, .user-display-name-wrap').hide();
        });
        </script>
        <?php
    }
    in reply to: Listings in Dashboard #581

    Joy
    Buyer
    Post count: 1076

    Great! Thank you for the consideration.

    in reply to: Login redirect #580

    Joy
    Buyer
    Post count: 1076

    I’m trying to minimize the content shown. Plus, the login widget would appear below the reviews on mobile, so users will probably not see it, get navigated away when they login, then maybe decide its too much trouble to search for the listing again.

    I think this brings the user experience down negatively and should be considered. It can also affect the success of a website. Thank you.

    in reply to: Username Privacy #573

    Joy
    Buyer
    Post count: 1076

    Thank you Guust. Yes, I understand that it’s not available. But perhaps it could be implemented in the next update. I think that this is a reasonable request so maybe @giri may consider it. 😉

    in reply to: Username Privacy #568

    Joy
    Buyer
    Post count: 1076

    No, I would prefer to have the first and last names used, but for privacy reasons, the users last names should be masked.

    I also do utilize the display name field, that’s the name that appears in their profile link.

    in reply to: Social Login Registration #557

    Joy
    Buyer
    Post count: 1076

    I see that makes sense. 🙂

    in reply to: Recaptcha #497

    Joy
    Buyer
    Post count: 1076

    Oh gosh I’m sorry. It’s working just fine now. Thank you.

    in reply to: Recaptcha #494

    Joy
    Buyer
    Post count: 1076

    Sorry, I tried that and it’s not working.

    in reply to: Social Login #491

    Joy
    Buyer
    Post count: 1076

    Whoops, I must’ve missed that. It’s all good now. Thank you.

    in reply to: Social Login #482

    Joy
    Buyer
    Post count: 1076

    website.com/wp-login

    The backend login screen for WordPress. Thank you.

    in reply to: Invoices in Dashboard #400

    Joy
    Buyer
    Post count: 1076

    Whoo hoo! Thank you!

Viewing 15 posts - 31 through 45 (of 49 total)