Title: Some wish list items
Last modified: August 21, 2016

---

# Some wish list items

 *  Resolved [onlyway](https://wordpress.org/support/users/onlyway/)
 * (@onlyway)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/some-wish-list-items/)
 * Here is my little wish list. Maybe some of these things already exist, if so 
   please point me in the right direction.
 * 1.) Points Key – some page that shows all the ways users can earn points
    2.)
   In user log area it would be most useful to show actual username – not the display
   name 3.) In user log area it would also be great to show a list of users ordered
   by total number of points.
 * Thanks for a great plugin!!!
 * [https://wordpress.org/plugins/mycred/](https://wordpress.org/plugins/mycred/)

Viewing 7 replies - 1 through 7 (of 7 total)

 *  Thread Starter [onlyway](https://wordpress.org/support/users/onlyway/)
 * (@onlyway)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/some-wish-list-items/#post-5021986)
 * Another idea
 * It would also be great if had some way to hook into a altcoin or several altcoins.
 *  Plugin Author [myCred](https://wordpress.org/support/users/designbymerovingi/)
 * (@designbymerovingi)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/some-wish-list-items/#post-5022115)
 * Hey onlyway.
 * 1) This one is a bit tricky to develop. The main reason is because people use
   the myCRED hooks in a a lot of different ways. It would be a lot faster for you
   to just list the things that gives points yourself on a page like I do on the
   [mycred.me website](http://mycred.me/community/earning-tokens/). But I am looking
   to see if there is something generic I can do for version 1.5 of myCRED.
 * 2) This one falls under “customization” so there is a filter for this. You can
   show anything you want for each log column. Here is a code snippet for your themes
   functions.php file which will change the log to always show the users username:
 *     ```
       add_filter( 'mycred_log_username', 'mycred_pro_username_column_content', 10, 3 );
       function mycred_pro_username_column_content( $content, $user_id, $log_entry ) {
   
       	$user = get_userdata( $user_id );
       	// Make sure user still exists
       	if ( ! isset( $user->user_login ) )
       		return '-';
   
       	return $user->user_login;
   
       }
       ```
   
 * You can do this with all built-in columns as they all have a filter. The filter
   name is organized by the column title: `mycred_log_{column_name}`.
 * User column: `mycred_log_username`
    Time column: `mycred_log_date` Amount column:`
   mycred_log_creds` Entry column: `mycred_log_entry` Your own custom column: `mycred_log_mycustomcol`
 * 3. On the Users page in the admin area the Points column is sortable. You can
   click on the column header to sort users according to their balance in a ascending
   or descending order.
 * Finally I am currently beta testing a new gateway for [Coin Payments](https://www.coinpayments.net/).
 *  [maddogmcewan](https://wordpress.org/support/users/maddogmcewan/)
 * (@maddogmcewan)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/some-wish-list-items/#post-5022133)
 * aaah it is time to finally migrate our cubepoints with buddypress install to 
   myCRED…. been going through all the documentation on myCred… have few questions
 * 1> Is there an easy way to migrate existing user points in cubepoints to myCRED…
   at the end of the day i thought of renaming the user_meta value “cpoints” to 
   whatever user meta value the mycred system uses? That is ofcourse assuming the
   total value of points IS written to the user meta table
 * 2> On the transfer points between users widget… we build a autosuggest feature
   into our site that populates the select box when a user starts typing his friends
   name… does something similar exist in myCRED?
 * 3> would it be easy to add points to custom posts eg a user adds a custom post
   called Movie Review?
 * 4> Last but not least we use the BP Gifts Reborn plugin allowing users to send
   gifts to one another, the plugin has the ability to subtract cost of the gift
   from cubepoints. Any support for this in MyCRED?
 *  [maddogmcewan](https://wordpress.org/support/users/maddogmcewan/)
 * (@maddogmcewan)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/some-wish-list-items/#post-5022135)
 * aaah forgot – cubepoints had a really nice growl like pop up feature that showed
   as a user got points – anything similiar?
 *  Plugin Author [myCred](https://wordpress.org/support/users/designbymerovingi/)
 * (@designbymerovingi)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/some-wish-list-items/#post-5022136)
 * Hey maddogmcewan.
 * **1**) Yep, once you have setup myCRED, you will find 3 import tools under Tools
   > Import in your admin area. You can import CubePoints balances and log entries
   or CSV files.
 * _You can find more information about importing in at [http://codex.mycred.me/get-started/the-log/](http://codex.mycred.me/get-started/the-log/)._
 * **2**) The transfer shortcode mycred_transfer and the transfer widget has a autocomplete
   feature build-in. You can however also pre populate a particular user as well.
   Transfers are done via AJAX in myCRED.
 * _You can find more information about the Transfer add-on at [http://mycred.me/add-ons/transfer/](http://mycred.me/add-ons/transfer/)_
 * **3**) myCRED has a hook called “Points for publishing content”. You can award
   points to any custom post type currently registered on your website. Post types
   registered as “Built in” and are not “Public” are not shown in this list. Also
   bbPress forum / topic / reply would not be here either since they are managed
   by a different hook.
 * _You can find more information about available hooks at: [http://mycred.me/about/hooks/](http://mycred.me/about/hooks/)_
 * **4**) If this is the gift plugin that comes in the CubePoints for BuddyPress
   plugin then yes, it is supported.
 * **5**) Of course, myCRED calls it “Notifications” and it is a build-in add-on.
   There is a premium version of it as well which helps you style things if you 
   are uncomfortable with CSS. You can also select where the notice shows on the
   screen and set different colors for positive and negative values. You can also
   set the template to use for notices.
 * _You can find more information about this add on at: [http://mycred.me/add-ons/notifications/](http://mycred.me/add-ons/notifications/)_
 * myCRED add-ons are like CubePoints Modules. You have a number of add-ons build-
   in that you can enable on the myCRED > Add-ons page in your admin area.
 * If you want to develop you own add-ons there is a codex entry on the [Modules API](http://codex.mycred.me/api-guides/module-api/).
 * Let me know if you require any further assistance and welcome to myCRED.
 *  [maddogmcewan](https://wordpress.org/support/users/maddogmcewan/)
 * (@maddogmcewan)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/some-wish-list-items/#post-5022137)
 * WOW WOW WOW – wow again —– incredible stuff and incredible support – this is 
   worth paying for !!!!!!!!!!!!!!!!!! mucho gracias
 *  Thread Starter [onlyway](https://wordpress.org/support/users/onlyway/)
 * (@onlyway)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/some-wish-list-items/#post-5022275)
 * I was totally bummed about switching off of cubepoints…like totally! BUT I am
   so glad I did!! This thing is awesome, like totally awesome!!!
 * Thanks for the awesome plugin and and support!

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Some wish list items’ is closed to new replies.

 * ![](https://ps.w.org/mycred/assets/icon-128x128.gif?rev=3512531)
 * [Points Management System For Gamification, Ranks, Badges, and Loyalty Rewards Program - myCred](https://wordpress.org/plugins/mycred/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/mycred/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/mycred/)
 * [Active Topics](https://wordpress.org/support/plugin/mycred/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/mycred/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/mycred/reviews/)

 * 7 replies
 * 3 participants
 * Last reply from: [onlyway](https://wordpress.org/support/users/onlyway/)
 * Last activity: [11 years, 11 months ago](https://wordpress.org/support/topic/some-wish-list-items/#post-5022275)
 * Status: resolved