expire-users
expire-users copied to clipboard
Expire Date Column In Users Overview Page
Hi,
When I view the page that shows all registered users of the site, there is a column with the heading "Expire Date". Is this produced by this plugin?
Unfortunately no expiry dates for any user show in this column. My client is asking for this info to be displayed. Is there a way that I can display this info for them, as their site has approximately 800 users? Or, is this something that you could fix/implement?
Thanks
I had the same issue and it was a plugin conflict, i had other plugin using an action for "manage_users_custom_column" using same priority, so i made a workaround , changing action priority value, from 10 to 15, made the trick :
add_action( 'manage_users_custom_column', array( $this, 'manage_users_custom_column' ), 15, 3 );
Hope it helps.
As I can see, this issue has existed for a few years and isn't getting resolved. I still have the problem.
Edit: I changed the code and am waiting for @benhuson to approve.