Plugin Author
myCred
(@designbymerovingi)
Can you give some more details so I can try and replicate the issue? If you reload the page, does the balance adjust itself?
Only the history reload, not the balance. I can send you a login to my site if you want?
Plugin Author
myCred
(@designbymerovingi)
I think I found the issue.
Open mycred/modules/mycred-module-hooks.php
On line 1424 you will find:
$this->update_creds( $users_log->id, $user_id, $users_log->creds+$amount );
Change this to:
$this->update_creds( $users_log->id, $user_id, $users_log->creds+$amount );
$this->core->update_users_balance( $user_id, $amount );
same thing 6 rows further down, you will find:
$this->update_creds( $users_log->id, $user_id, $users_log->creds+$amount );
Change it to:
$this->update_creds( $users_log->id, $user_id, $users_log->creds+$amount );
$this->core->update_users_balance( $user_id, $amount );
Perfect, it’s working 🙂
Thanks a lot!