Title: Adding bonus
Last modified: April 14, 2018

---

# Adding bonus

 *  Resolved [rasmuss](https://wordpress.org/support/users/rasmuss/)
 * (@rasmuss)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/adding-bonus/)
 * Hi!
 * First of all – great plugin. I have this situation where I want to give users
   bonus, when they buy enough “credit”.
    Example: If you buy 10 credits, then you’ll
   get 10 * 0.5 + 10 = 15 credit in total (but you’ll pay 10 euros). I believe I
   should be doing this action AFTER user has bought an item. 1) Do you see a place
   where I could do it? 2) How to manually update records? Is there somekind of 
   hook or something I can attach to?
 * Thank you!

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

 *  Plugin Author [Subrata Mal](https://wordpress.org/support/users/subratamal/)
 * (@subratamal)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/adding-bonus/#post-10181434)
 * [@rasmuss](https://wordpress.org/support/users/rasmuss/),
 * Thanks for reaching out to our support forum. Please use the code snippet to 
   themes function.php file for above scenario.
 *     ```
       add_filter('woo_wallet_credit_purchase_amount', 'woo_wallet_credit_purchase_amount_callback');
       function woo_wallet_credit_purchase_amount_callback($credit){
           $credit = ($credit * 0.5) + $credit;
           return $credit;
       }
       ```
   
 * Thanks and Regards,
    Subrata Mal
 *  Thread Starter [rasmuss](https://wordpress.org/support/users/rasmuss/)
 * (@rasmuss)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/adding-bonus/#post-10181461)
 * Simply amazing – Thank you so much 🙂
 *  Plugin Author [Subrata Mal](https://wordpress.org/support/users/subratamal/)
 * (@subratamal)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/adding-bonus/#post-10181467)
 * [@rasmuss](https://wordpress.org/support/users/rasmuss/),
 * Could you please consider posting a review of our plugin? In addition to providing
   feedback, reviews can help other users to know who we are and what our plugin
   does.
 * Cheers!!!

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

The topic ‘Adding bonus’ is closed to new replies.

 * ![](https://ps.w.org/woo-wallet/assets/icon-256x256.png?rev=3360666)
 * [Wallet for WooCommerce](https://wordpress.org/plugins/woo-wallet/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woo-wallet/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woo-wallet/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-wallet/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-wallet/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-wallet/reviews/)

## Tags

 * [bonus](https://wordpress.org/support/topic-tag/bonus/)
 * [hook](https://wordpress.org/support/topic-tag/hook/)

 * 3 replies
 * 2 participants
 * Last reply from: [Subrata Mal](https://wordpress.org/support/users/subratamal/)
 * Last activity: [8 years, 1 month ago](https://wordpress.org/support/topic/adding-bonus/#post-10181467)
 * Status: resolved