This is the help document for the Notify Subscribers plugin. We recommend going through this plugin manual before installing and using the plugin.
If you have gone through the manual and still have any questions, feel free to contact us at [email protected].
“Notify Subscribers” plugin gives you an option to send the post notification to the subscribers when post is published.
Key FeaturesConfig : In option you can set redirection of Thank You page after succesful subscription.
Post Types : In this snapshot we enables the services and product post type notification so it sends the push notification for Service and Products post types.
Note : It sends the push notification for all the post types by default. You can disable the push notification for specific post types. But, if you will disable it for all post types, it will send the push notification for all post types.
You have to visit Appearance >> Widgets to use it.
You can show subscribers from by using Notify Subscribers Widget.
You can show subscribers from by using Shortcode in PHP file.
echo do_shortcode( ‘[notify-subscribers]’ );
You can show subscribers from by using Shortcode in Backend Editor.
[notify-subscribers]
Frontend Subscribers Form
If you don't want to send notification for particular post then you can un-check the notify subscribers checkbox.
Once you have installed the plugin, you have to visit Notify Subscribers Menu to use it.
You can set form fields in Settings Tab. You can Enable/Disable fields.
You can customize the Email Templates for Admin Notification using 'Notification Template', User template set using 'Subscriber Template' and set email template for unsubscribe notification using 'Unsubscriber Template'.
Note: Email Template is set for subscribers confirmation in Email.
You can set the error message for Name and Email fields. Error message display when these fields value is incorrect.
These shortcodes you can use in email template to give a information about post/ page. Copy the keyword with bracket & curly braces and paste it into email template to show information.
In User Details tab you can see all the subscribers. You can export it in CSV and PDF format.
If you want to do anything before the posted data is entered as subscriber then add the below code to the function file.
/**
* Before subscriber
*
* @param array $postdata $_POST Data.
*/
add_action( 'ns_subscriber_before', function( $postdata ) {
// Code here.
} );
If you want to do anything after the subscriber is created then add the below code to the function file.
/**
* After subscriber
*
* @param object $user WP_User object.
*/
add_action( 'ns_subscriber_after', function( $user ) {
// Code here.
} );
You can Enable/Disable Mailchimp Integration. If you can Enable mailchimp integration you can add information of your mailchimp account API Key and List ID to get information of users in your mailchimp account.
Do you have any questions? Email us at [email protected] for personal assistance.