View Categories

Adding Custom Actions to Award or Deduct Points

With the WPGens Points and Rewards for WooCommerce plugin, you can go beyond the default earning rules and award or deduct points based on custom actions performed by your users.

This is useful when you want to reward customer engagement outside the usual order flow – such as completing a quiz, interacting on social media, or performing actions tracked by other plugins.

By using the wpgens_loyalty_update_points action hook, you can seamlessly integrate these events into your loyalty program and keep point tracking consistent across your store.

**Custom Point Actions & Integrations**

You can add custom point actions by using the `wpgens_loyalty_update_points` action. Here are some examples:

```php
// Award points for a custom action
function award_custom_points($user_id, $points, $description) {
    do_action(
        'wpgens_loyalty_update_points',
        $user_id,
        $points,
        'add',
        'custom_action',
        null,
        $description
    );
}

// Example: Award points for completing a quiz
add_action('quiz_completed', function($user_id, $quiz_id) {
    $points = 100; // Award 100 points
    $description = sprintf('Completed quiz #%d', $quiz_id);
    award_custom_points($user_id, $points, $description);
});

// Example: Award points for social media engagement
add_action('social_media_engagement', function($user_id, $platform, $action) {
    $points = 50; // Award 50 points
    $description = sprintf('Engaged on %s: %s', $platform, $action);
    award_custom_points($user_id, $points, $description);
});

// Example: Integration with another plugin
add_action('other_plugin_custom_event', function($user_id, $event_data) {
    // Calculate points based on event data
    $points = calculate_points_from_event($event_data);
    $description = sprintf('Completed %s', $event_data['event_name']);
    
    do_action(
        'wpgens_loyalty_update_points',
        $user_id,
        $points,
        'add',
        'other_plugin',
        $event_data['event_id'],
        $description
    );
});

// Example: Deduct points for a penalty
function deduct_points_penalty($user_id, $points, $reason) {
    do_action(
        'wpgens_loyalty_update_points',
        $user_id,
        $points,
        'deduct',
        'penalty',
        null,
        $reason
    );
}
```

**Integration Best Practices**

1. Always use meaningful `$source` values to track where points came from
2. Include relevant `$reference_id` when available (e.g. order ID, post ID)
3. Use descriptive `$description` for better tracking
4. Consider adding your own hooks to allow others to extend your integration
5. Test points updates in test mode first
6. Handle errors gracefully and log them if needed
What they say

Trusted by 7000+ customers

Our plugins are used by more than 7000 websites across the globe. All of our plugins are rated 5 stars on WordPress.org. Don’t just take our word for it, check what others are saying about WPGens.

I bought and tested the plugin with WooCommerce Subscription and it works like a charm. I had some specific questions to the developer and he responded very fast and helped me. I suggest the plugin!

Refer a Friend PREMIUM
@rinpocse91

If your looking to set up a referral program on your WooCommerce site to boost up your site sale “Refer A Friend for WooCommerce by WPGens” is your plugin to go for. Little blown away with an amazing support provided from (Goran) the plugin working exactly what you want to set up a referral system. Good job guys!

Refer a Friend PREMIUM
@samroon007

We deal with dozens of applications and plugins on a daily basis. Many of them are excellent, but few have truly excellent support. The Refer A Friend plugin is one of them: the response to my questions is always fast, friendly and very helpful.

Refer a Friend PREMIUM
@smartDIYer

This plugin is awesome. It looks good, it’s light weight, has great support – everything you can expect from a paid plugin, only it’s free!!!!

Swifty Bar
@ofirbeigel

Read all testimonials on WordPress Repository.

Get notified when we add new plugins.

We do not publish plugins often, but when we do, it's something awesome. No spam, we promise.

bool(false)