• If you can update plugin with sorting feature? It’s useful information, when you can check which user has newest registration date.
    Regards.

Viewing 3 replies - 1 through 3 (of 3 total)
  • I would like to second this request please.

    Thank you.

    A manual hack in the mean time.

    /wp-admin/users.php?orderby=user_registered&order=asc

    /wp-admin/users.php?orderby=user_registered&order=desc

    Ok, so I have updated the plugin function.

    You can do this in WP-Admin
    /wp-admin/plugin-editor.php
    Then find the plugin and there is only 1 file to edit. Update the function to the one below.

    function cmr_suregd_add_upwd_col($columns) {
    		$sort_order = 'desc';
    		if (isset($_GET['order'])) {
    			$sort_order_old = $_GET['order'];
    			if ($sort_order_old == 'desc')
    				$sort_order = 'asc';
    		} 
    	    $columns['user_registered'] = '<a href="/wp-admin/users.php?orderby=user_registered&order='.$sort_order.'">'.'Registration Date'.'</a>';
    	    return $columns;
    	}
    • This reply was modified 3 years, 5 months ago by Jandal.
    • This reply was modified 3 years, 5 months ago by Jandal.
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘sorting feature’ is closed to new replies.