Super Simple Subscriptions
Extension for Super Simple Events (https://nl.wordpress.org/plugins/super-simple-events/) to subscribe to events.
Plugin info
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 3619 days ago
Is Super Simple Subscriptions abandoned?
Possibly abandoned (last update 3619 days ago).
Compatibility
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
Description
Extension for Super Simple Events (https://nl.wordpress.org/plugins/super-simple-events/) to subscribe to events.
- Enable/disable subscriptions for an event
- Subscribe or unsubscribe to an event
- View and delete all subscriptions (in the admin section)
- View / delete subscriptions for each event (in the admin section)
- Download event subscriptions
How to use
Just install the plugin. (see installation section).
Create or edit an event. Enable the checkbox ‘Enable subscriptions for this event’ to show the event subscription form.
To view all the subscriptions, go to www.your-site.com/wp-admin/admin.php?page=wp_sss
Wanted to view the subscriptions for one event? click on the event title on that page.
Download event subscriptions
Go to the admin event subscriptions overview (www.your-site.com/wp-admin/admin.php?page=wp_sss)
Click on an event title in the table. On the next page you see a ‘download subscriptions’ link below the page title.
Actions and filters
- Filter before inserting/remove a subscription
- Action after a subscription is saved or deleted
- Filter before subscription is deleted (admin section)
- Filter before showing the subscription form
-
Filter to change the subscription form
function test_filter($subscription, $type) {
var_dump(‘Prepare subscription’);
return $subscription;
}
add_filter(‘super_simple_subscriptions_prepare’, ‘test_filter’, 10, 2);function test_action($subscription, $type) {
var_dump(‘Action after subscription is saved or deleted’);
}
add_action(‘super_simple_subscriptions_saved’, ‘test_action’, 10, 2);function test_delete($subscription_id) {
var_dump(‘Delete subscription’);
return $subscription_id;
}
add_filter(‘super_simple_subscriptions_delete’, ‘test_delete’);function test_show_subscription_form($post_id) {
var_dump(‘Do some custom checks and return true or false’);
return TRUE;
}
add_filter(‘super_simple_subscriptions_show_subscription_form’, ‘test_show_subscription_form’);function test_super_simple_subscriptions_form($content) {
var_dump(‘Change the subscription form’);
return $content;
}
add_filter(‘super_simple_subscriptions_form’, ‘test_super_simple_subscriptions_form’);
Possible feature updates
- Limit subscriptions for an event
- Email confirmation
- Subscriptions only for members (or certain roles)
Installation
This section describes how to install the plugin and get it working.
Using The WordPress Dashboard
- Navigate to the ‘Add New’ in the plugins dashboard
- Search for ‘super_simple_subscriptions’
- Click ‘Install Now’
- Activate the plugin on the Plugin dashboard
Uploading in WordPress Dashboard
- Navigate to the ‘Add New’ in the plugins dashboard
- Navigate to the ‘Upload’ area
- Select
super_simple_subscriptions.zipfrom your computer - Click ‘Install Now’
- Activate the plugin in the Plugin dashboard
Using FTP
- Download
super-simple-subscriptions.zip - Extract the
super_simple_subscriptionsdirectory to your computer - Upload the
super_simple_subscriptionsdirectory to the/wp-content/plugins/directory - Activate the plugin in the Plugin dashboard
Frequently Asked Questions
I miss a functionality
Contact me 🙂
Review feed
Changelog
1.1.0
- Add option to download subscriptions for an event to a csv file.
1.0.0
- First Release


