J.D. Grimes
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPoints] Two classes defined in different set of pagesThanks for the info about the error.
The difference between the two classes you are asking about is complicated to explain, but basically, believe it or not, the design was originally based on the code for Widgets from WordPress core. There is a
WP_Widgets
class and aWP_Widget
class, IIRC, so that’s how this was built.Forum: Plugins
In reply to: [WordPoints] Auto-Update of PointsHi Leonard,
Yes, the Reset points extension should still work, and the logs are kept after the reset.
The answer to your other two questions is currently no.
Forum: Plugins
In reply to: [WordPoints] no updates and planned features in progress/plannedHey Shawn,
You’re welcome to email me ([email protected]), and we can talk.
Forum: Plugins
In reply to: [WordPoints] How can i give different point on different commentYou would have to manually give points to the users by following these instructions: https://wordpoints.org/user-guide/manually-editing-a-users-points/
Forum: Plugins
In reply to: [WordPoints] no updates and planned features in progress/plannedHi @mani46. You’re right that active development has been slow for the last year. There has been some development going on behind the scenes, but I haven’t had time to actually get a new release out. I have been planning to continue development, but so far it hasn’t worked out. I’ve also been thinking about passing on the project to another developer if I can find one that is interested, because I don’t want to see it die. If you know anyone, let me know!
Forum: Plugins
In reply to: [WordPoints] WPPOINTS and UMemeberSorry for the delayed reply; I’m still recovering from an exhausting (but fun!) weekend trip.
It sounds like we need an extension to integrate with Ultimate Member. I’m not sure how Ultimate Member’s user creation process is different from the usual WordPress user registration, but in general WordPoints should work with most membership plugins off the bat, I would think.
Same for the custom roles: it should read the roles if they are regular WordPress roles, but if Ultimate Member is using its own role system, then WordPoints wouldn’t know how to handle them by default.
A ranking symbol is also a good idea!
You can vote for this feature request here: https://trello.com/c/OMIReOCZ/8-ultimate-member
Forum: Plugins
In reply to: [WordPoints] Top of Current UserThis is in our list of suggestions here, and we plan to add it in the future: https://trello.com/c/1i6QOQZN/83-shortcode-to-show-user-position
Forum: Plugins
In reply to: [WordPoints] Share pointThis isn’t possible yet, but is planned for a future version.
Forum: Plugins
In reply to: [WordPoints] Safe to install?Hi @tcartr07,
Yes, it should be safe to install with the latest version of WordPress. It has been a while since the last update, but I am working on the next release now, and plan to have it ready by the time the next version of WordPress (5.3) is released.
Forum: Plugins
In reply to: [WordPoints] How to get points uploading photos into postHi @abhishek26. Great suggestion! I’ve added it to the list of feature requests here: https://trello.com/c/sRzhrsrd/122-points-for-using-an-image-in-a-post
You can vote for it there, and maybe it will be added in a future version, or in an extension.
Forum: Plugins
In reply to: [WordPoints] Top table – Link to each listed userHi @laucoste, sorry for the late reply.
What you need to do is add code like this to a custom plugin or your child theme:
function wp11242255_top_username_filter( $name, $user_id ) { $user = get_userdata( $user_id ); return '<a href="/m/' . $user->nicename . '">' . $name . '</a>'; } add_filter( 'wordpoints_points_top_users_username', 'wp11242255_top_username_filter' );
Forum: Plugins
In reply to: [WordPoints] Out of date?Hi @limone111. Sorry for the delayed reply. It looks like you’ve already figured out what you want to do, but just for clarity, I do still offer support for this plugin, and hope to continue development on it as well. The next update has been a long time in coming, but I am planning to release it eventually. Thanks for your interest!
Forum: Plugins
In reply to: [WordPoints] Cron Manager jobs for wordpointsHi Dave,
Yes, you can delete the excess jobs. There is only supposed to ever be one of these jobs registered, but perhaps there is a bug somewhere. I’ll see about fixing it in a future update.
Forum: Plugins
In reply to: [WordPoints] Recalculate pointsHi @gaudaru, sorry for the delayed reply. It currently isn’t possible to recalculate the points, although that is something that I hope to make possible in the future.
Forum: Plugins
In reply to: [WordPoints] Extract user pointsYou would run a query on the
wp_usermeta
table using phpMyAdmin or another similar program. The table names may be slightly different if the prefix is different thanwp_
. You will also need to change thewordpoints_points-points
to replacepoints
with the slug of your points type (e.g.,wordpoitns_points-credits
).SELECT users.display_name AS user, meta.meta_value AS points FROM wp_users AS users LEFT JOIN wp_usermeta AS meta ON users.ID = meta.user_ID AND meta.meta_key = 'wordpoints_points-points' ORDER BY COALESCE(CONVERT(meta.meta_value, SIGNED INTEGER), 0) DESC, ID ASC
phpMyAdmin should give you the option to export the results as CSV.
- This reply was modified 5 years, 9 months ago by J.D. Grimes. Reason: code formatting