Hello,
I appreciate you giving credit to the original authors, but putting them in the Authors field in readme.txt is not the right way to do it. It gives the impression that we endorse it.
A more appropriate way of giving credit would be to write something like this in the description:
Based on the WP-UserOnline plugin.
jschires
Member
Posted 1 year ago #
This will definately be corrected and I appreciate your feed back as well as your awesome plugin!
great plugin..
have a problem with it, running all latest versions of everything.
Fatal error: Call to undefined function get_author_email() in /home/novamag1/public_html/mysite.com/wp-content/plugins/mingle-users-online/core.php on line 45
This is the useronline page..
Assistance appreciated.
Regards from Australia.
Paul
DarkWolf
Member
Posted 1 year ago #
@porl: get_author_email() is deprecated: http://codex.wordpress.org/Function_Reference/the_author_email
Open ./wp-content/plugins/mingle-users-online/core.php
and at line 45 change:
$avat = get_avatar( get_author_email(), '30' );
with:
$avat = get_avatar( the_author_email(), '30' );
-
Now it work ;)
-
Edit: also line 46 is badly. It show bloghomepage/NickName instead to show /author/userslug.
This plugin is bugged.