Customize WordPress
Better Notifications for WP is a simple but powerful plugin for that allows you to customise the email notifications that WordPress sends using a WYSIWYG editor and shortcodes. All of the default WordPress email notifications are available to customise as well as lots of new ones. You can choose to send notifications to individual users, multiple users, all users in a user role, multiple roles – you name it! You can also power-up your notifications with Premium Add-ons. Emails are sent out via your WordPress website (using wp_mail) but can be sent via SMTP using a 3rd party plugin should you wish. If you want to let users create their own email notifications/subscriptions/alerts, check out my other plugin: Content Notify. Here’s a quick walkthrough of the plugin in action: An Example: You want all the users in the Editor role to be notified via email when a new post is published and you’d like to customise it to include your logo along with the author’s name and date / time it was published – with this plugin, that’s easy. A handy list of shortcodes you can use is available here. Premium Add-ons Power-up your notifications using add-ons: Notification Add-on Bundles – Everything you need for your WordPress notifications. Save big when you buy an add-on bundle. Instant access. Subscriptions (GDPR) – Allow users to manage their subscriptions for BNFW notifications. If you want to let users create their own email notifications/subscriptions/alerts, check out my other plugin: Content Notify. Conditional Notifications – Limit certain notifications depending on which categories, tags, post formats, or terms you choose. Custom Fields – Provides a number of new shortcodes allowing you to include data from custom fields and custom user fields created using ACF. Send to Any Email – Send notifications to non-WordPress Users. Digest – Group multiple notifications into a single digest notification. Global Override – Override some of the settings of notifications directly when editing a post, page, or custom post type. Reminders – Send a reminder to your users and/or user roles when a post, page, or custom post type hasn’t been updated after a set amount of time. Also send a notification when a user hasn’t logged in for a set amount of time. Multisite – Adds new notifications and shortcodes for WordPress Multisite to Better Notifications for WP. Profile Builder – Adds compatibility and new notifications and shortcodes for Profile Builder Free, Hobbyist, and Pro plugins to Better Notifications for WP. …and more coming soon! Notifications The notifications that are currently available to use are: Admin New User Registration – For Admin User Lost Password – For Admin Password Changed – For Admin User Email Changed – For Admin User Role Changed – For Admin User Logged In – For Admin WordPress Core Automatic Background Updates Privacy – Confirm Action: Export Data Request – For Admin Privacy – Confirm Action: Erase Data Request – For Admin Transactional New User Registration – For User New User – Post-registration Email User Lost Password – For User Password Changed – For User User Email Changed Confirmation – For User User Email Changed – For User User Role Changed – For User User Logged In – For User Comment Reply Privacy – Confirm Action: Export Data Request – For User Privacy – Confirm Action: Erase Data Request – For User Privacy – Data Export – For User Privacy – Data Erased – For User Profile Builder – Approval Request for Admin (Profile Builder Add-on) Profile Builder – Email Confirmation (Profile Builder Add-on) Profile Builder – Account Approved (Profile Builder Add-on) Profile Builder – Account Unapproved (Profile Builder Add-on) User Login Reminder (Reminders Add-on) Posts / Custom Post Types New Post Published Post Updated Post Pending Review New Private Post Post Scheduled Published Post Moved to Trash New Comment New Comment Awaiting Moderation Post – Comment Approved Post – Custom Field Updated (Custom Fields Add-on) Post – Update Reminder (Reminders Add-on) New Trackback New Pingback Pages New Page Published Page Updated Page Pending Review New Private Page Page Scheduled Page – New Comment Page – New Comment Awaiting Moderation Page – Comment Approved Page – Comment Reply Page – Custom Field Updated (Custom Fields Add-on) Page – Update Reminder (Reminders Add-on) Media New Media Published Media Updated Media – New Comment Media – New Comment Awaiting Moderation Media – Comment Approved Media – Comment Reply Posts New Category New Tag Custom Post Types New Term Multisite (Multisite Add-on) New Site Activated or Created – For Network Admin New User Created – For Network Admin Network Admin Email Change Attempted – For New Network Admin Network Admin Email Changed – For Old Network Admin New Site Activated or Created – For Site Admin Site Deleted – For Site Admin Site Admin Email Change Attempted – For New Site Admin Site Admin Email Changed – For Old Site Admin New Site Activated – For User New User Created – For User New User Invited to Site – For User If you’d like to see a notification in the list above, please drop me a line in the forum and I’ll see what I can do to add it. If you want to let users create their own email notifications/subscriptions/alerts, check out my other plugin: Content Notify. Like this plugin? Please leave it a great review! Don’t think the plugin is worthy of 5 stars? Having problems? Let me know in the forum and I’ll do my best to help. DISCLAIMER This is an incredibly useful and highly rated plugin however, it’s possible that overuse or abuse of this plugin could upset your users by sending them too many notifications. By downloading / installing / using this plugin, you take full responsibility of the management / quantity / types of notifications that are sent out from it including abiding by any SPAM laws in your country / operating areas, dealing with / responding to subscription / unsubscription requests, complaints, and so on. I accept no liability or responsibility for SPAM or abuse of this plugin from the user(s) of or anyone that may receive notifications as a result of the use of this plugin. I’m trusting you, please don’t abuse your users.
Top keywords
- user35×3.57%
- notifications25×2.55%
- admin22×2.24%
- post17×1.73%
- email16×1.63%
- page13×1.33%
- add-on12×1.22%
- comment12×1.22%
- users12×1.22%
- custom11×1.12%
- site11×1.12%
- builder10×1.02%
Comment Reply
This plugin allows visitors to subscribe to get answers to their comments via e-mail. Warning This plugin uses the “wp_insert_comment” hook, therefore, everytime a comment is created, a notification is likely to be sent. If you are importing comments into your blog, it’s a good idea to disable this plugin. Sending e-mails does not work? The plugin uses the standard WordPress e-mail function. If you have problems getting e-mails sent, you might try using plugins like https://wordpress.org/plugins/wp-mail-smtp/ to improve sending e-mails from your site. Customizing the layout of the checkboxes The label next to the checkboxes don’t contain a whitespace. Depending on your theme you might want to add a custom style like this to get a space between the checkbox and the label: input#cren_subscribe_to_comment, input#cren_gdpr { margin-right: 0.5em; } The plugin does not add this style be default as it depends on your theme if this is neccessary. Customizing the email template To customize the email template, copy the “templates” folder to your theme folder (a child theme should be used to avoid losing the custom templates when the theme is updated). The plugin will look for templates on the “/wp-content/themes/[THEME]/templates/cren/” folder; if a custom template is not found, then it will fallback to the default template. Templates folder on GitHub: https://github.com/arnowelzel/worpdress-comment-reply-email-notification/tree/master/templates Changing the subscription checkbox label The checkbox label can be changed with the cren_comment_checkbox_label filter. This way you can update the text to your taste and keep the plugin updated. Changing the GDPR checkbox label The GDPR checkbox label can be changed with the cren_gdpr_checkbox_label filter. This way you can update the text to your taste and keep the plugin updated. Modifiying HTML output Using the filters cren_gdpr_checkbox_html and cren_comment_subscribe_html you can modify the HTML output of the checkboxes if needed. Example: add_filter('cren_gdpr_checkbox_html', function(string $html_output, string $label_text, string $privacy_policy_url): string { $html_output = ' ' . $label_text . ' * ( Privacy Policy ) '; return $html_output; }, 10, 3); add_filter('cren_comment_subscribe_html', function(string $html_output, string $label_text, bool $checked_default): string { $checked = $checked_default ? 'checked' : ''; $html_output = ' ' . $label_text . ' '; return $html_output; }, 10, 3);
Top keywords
- label12×3.01%
- html10×2.51%
- checkbox