A WordPress plugin that automatically syncs payment-related tags between LearnDash group leaders and their students.
This plugin bridges the gap between LearnDash groups and WP Fusion by ensuring that when group leaders receive payment-related tags (such as "payment failed" or "subscription canceled"), those same tags are automatically applied to all students in their groups. When tags are removed from group leaders, they are also removed from their students.
- Automatically syncs payment status tags from group leaders to all their students
- Removes payment status tags from students when removed from group leaders
- Works with multiple groups and nested group hierarchies
- Configurable payment-related tag detection
- Prevents infinite loops when applying or removing tags
- Detailed logging of tag sync operations
- WordPress
- LearnDash LMS plugin
- WP Fusion plugin
- Download the plugin ZIP file
- Navigate to WordPress Admin > Plugins > Add New
- Click "Upload Plugin" and select the downloaded ZIP file
- Activate the plugin
The plugin works automatically after installation with default payment-related tag keywords:
- payment failed
- failed payment
- payment canceled
- subscription canceled
- subscription expired
You can customize which tags are considered payment-related by using the wpf_learndash_payment_sync_tags filter:
add_filter( 'wpf_learndash_payment_sync_tags', function( $tags ) {
// Add custom payment tag keywords
$tags[] = 'invoice overdue';
$tags[] = 'payment declined';
return $tags;
});- When tags are applied to any user, the plugin checks if they are a group leader
- If they are a leader, it checks if any of the applied tags match the payment-related keywords
- If payment tags are detected, the plugin applies those same tags to all students in the groups led by that user
- Similarly, when payment tags are removed from a group leader, the same tags are removed from their students
- The plugin includes safeguards to prevent infinite loops when applying or removing tags
For support, please contact Very Good Plugins or visit WP Fusion.
GPL-3.0+
Developed by Very Good Plugins for WP Fusion.