• Resolved Marcelo Pedra

    (@kent-brockman)


    Hello Mika, is there any way to show the time of every user registering too? this plugin in combination with “User Last Login” gives a very good feedback and intelligence about how the users used a website. I’m testing it in a very huge customer where they have 4k registered users and knowing the date and time or registration would be very useful. Is that possible?
    Thanks in advance!

    https://wordpress.org/plugins/recently-registered/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Are you on Multisite? On a single site, it shows you time as well. Multisite itself defaults to NOT show the time.

    Thread Starter Marcelo Pedra

    (@kent-brockman)

    I see, it’s hardcoded in your plugin:

    if ( is_multisite() && ( 'list' == $mode ) ) {
    	$formated_date = __( 'Y/m/d' );
    } else {
    	$formated_date = __( 'Y/m/d g:i:s a' );
    }

    Is this due to any limitation on multisite environment? Can I add the “g:i:s a” part to the first $formated_date or is there anything I should be aware of before?

    Plugin Author Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    It’s matching the defaults on Multisite, which are also hard coded in order to fit with the space limitations.

    Editing a plugin means you’d have to reedit it every time it’s updated, but this one rarely is.

    Thread Starter Marcelo Pedra

    (@kent-brockman)

    Great. It worked well with the edit.
    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Any way to show the regitering time too?’ is closed to new replies.