• Resolved kateM82

    (@ddgdaily)


    Hi,

    I actually have three questions

    1 – how do I import the log entries over from cubepoints, not just the points.

    2 – how do I reset the mycred points back to 0, so I can re import from wordpress (as I imported twice trying to get the logs to work, and now everyone has double points)

    3 – How do I show both the current user, and also the authors points via PHP (not short code) so I can add it to my page templates?

    thanks

    https://www.ads-software.com/plugins/mycred/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author myCred

    (@designbymerovingi)

    Hi!

    1. You can not import the Cubepoints log though the Import add-on.

    2. If you are using 1.3 or higher, go to myCRED > Settings > Management and click “Set all to zero” under “Points” which will reset all your users points to zero.

    3. Points are stored in your user meta table so you can access it though the get_user_meta function. example:

    $user_id = get_current_user_id();
    $points = get_user_meta( $user_id, 'mycred_default', true );
    if ( empty( $points ) ) $points = 0;
    echo 'You have ' . $points . ' points.';
    Thread Starter kateM82

    (@ddgdaily)

    Hi Gabriel,

    I was hoping that with the import function it would bring the logs across as well? Is this something you might add in the future? For existing sites it is pretty important to keep those records.

    Thanks

    Plugin Author myCred

    (@designbymerovingi)

    Hey.

    It’s on my list of features I want to add but I have not yet looked at it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How do I import the logs (not just the points) from Cubepoints?’ is closed to new replies.