Better Notifications for WordPress - Version 1.3.9.4

Version Description

  • 15th February 2016 =
  • Filter improvements for the new Per-post Override add-on.
Download this release

Release Info

Developer voltronik
Plugin Icon 128x128 Better Notifications for WordPress
Version 1.3.9.4
Comparing to
See all releases

Code changes from version 1.3.9.3 to 1.3.9.4

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://betternotificationsforwp.com/donate/
4
  Tags: notifications, email, mail, alerts, roles, user, users, admin, HTML, plain, wp_mail, shortcode, customize, post, page, updated, pending review, scheduled, category, tag, term, custom post type, comment, akismet, trackback, pingback, lost password, welcome, new user, bulk, notice, trigger, CC, BCC, from, author
5
  Requires at least: 3.5
6
  Tested up to: 4.4.2
7
- Stable tag: 1.3.9.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -190,6 +190,9 @@ An older version might work but this is untested. A lot of the newer features re
190
 
191
  == Changelog ==
192
 
 
 
 
193
  = 1.3.9.3 - 12th February 2016 =
194
  * General bug fixes and updates relating to future add-ons and the new [Per-post Override add-on](https://betternotificationsforwp.com/downloads/per-post-override/) which allows you to override your notifications for each post / page / custom post.
195
  * Added: New Post Published notifications now trigger on `auto_draft_to_publish`. This may or may not effect you if you use a publish through a front-end form or from an app.
4
  Tags: notifications, email, mail, alerts, roles, user, users, admin, HTML, plain, wp_mail, shortcode, customize, post, page, updated, pending review, scheduled, category, tag, term, custom post type, comment, akismet, trackback, pingback, lost password, welcome, new user, bulk, notice, trigger, CC, BCC, from, author
5
  Requires at least: 3.5
6
  Tested up to: 4.4.2
7
+ Stable tag: 1.3.9.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
190
 
191
  == Changelog ==
192
 
193
+ = 1.3.9.4 - 15th February 2016 =
194
+ * Filter improvements for the new [Per-post Override add-on](https://betternotificationsforwp.com/downloads/per-post-override/).
195
+
196
  = 1.3.9.3 - 12th February 2016 =
197
  * General bug fixes and updates relating to future add-ons and the new [Per-post Override add-on](https://betternotificationsforwp.com/downloads/per-post-override/) which allows you to override your notifications for each post / page / custom post.
198
  * Added: New Post Published notifications now trigger on `auto_draft_to_publish`. This may or may not effect you if you use a publish through a front-end form or from an app.
bnfw.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Better Notifications for WordPress
4
  * Plugin URI: http://wordpress.org/plugins/bnfw/
5
  * Description: Send customisable emails to your users for different WordPress notifications.
6
- * Version: 1.3.9.3
7
  * Author: Voltronik
8
  * Author URI: https://betternotificationsforwp.com/
9
  * Author Email: plugins@voltronik.co.uk
3
  * Plugin Name: Better Notifications for WordPress
4
  * Plugin URI: http://wordpress.org/plugins/bnfw/
5
  * Description: Send customisable emails to your users for different WordPress notifications.
6
+ * Version: 1.3.9.4
7
  * Author: Voltronik
8
  * Author URI: https://betternotificationsforwp.com/
9
  * Author Email: plugins@voltronik.co.uk
includes/notification/post-notification.php CHANGED
@@ -20,6 +20,9 @@ function bnfw_post_notifications( $notifications, $post_type ) {
20
  $notifications[] = 'pending-' . $post_type;
21
  $notifications[] = 'future-' . $post_type;
22
  $notifications[] = 'comment-' . $post_type;
 
 
 
23
 
24
  return $notifications;
25
  }
20
  $notifications[] = 'pending-' . $post_type;
21
  $notifications[] = 'future-' . $post_type;
22
  $notifications[] = 'comment-' . $post_type;
23
+ $notifications[] = 'new-comment';
24
+ $notifications[] = 'new-trackback';
25
+ $notifications[] = 'new-pingback';
26
 
27
  return $notifications;
28
  }