LogoLogo
WordPress.orgExtensionsSupport
Version 9
Version 9
  • Notification – Custom Notifications and Alerts for WordPress
  • Updating to v9
  • Known issues
  • πŸ€Έβ€β™€οΈ User guide
    • Update broke my site
    • How Notification plugin works
    • Who can use this plugin
    • How to create Notifications
    • Troubleshooting
    • Advanced
      • How to escape { character
      • Background processing
      • How to setup different FROM address for different Notifications
      • Custom Post Type support
      • Disable upselling
      • How to send HTML Emails
  • πŸ”§Developer
    • General
      • Plugin loading chain
      • Runtime
      • Extension possibilities
      • Creating an extension
      • Customizations
      • Bundling Notification plugin
      • White label mode
    • Notifications
      • Suppressing the Notification
      • JSON synchronization
      • Programmatic Notifications
    • Triggers
      • List of all default Triggers
      • Custom Trigger
      • Enable support for non-public Custom Post Type
      • Adding Merge Tags to existing Triggers
    • Carriers
      • Custom Carrier
      • Adding custom fields to Carrier form
      • Suppressing the Carrier
    • Recipients
      • Custom Recipient
    • Snippets
      • General
        • Automatic Trigger testing
        • Allow other roles to edit Notifications
        • Programmatic Notification with manual Trigger
        • Background Processing filter
      • Triggers
        • Post
        • User
      • Integations
        • WP All Import
        • MemberPress
  • 🧩Extensions
    • Installation
    • Planned extensions
    • 3rd Party Extensions
    • Custom Fields
      • v2.2
      • v1.4
      • v1.3
    • Conditionals
    • Email Attachments
    • Push
    • Scheduled Triggers
    • Slack
    • Twilio
    • Webhooks
Powered by GitBook
On this page
  • The Recipients field is empty
  • Nothing is sent
  • Multiple Notifications are sent
  • Weird characters are being sent in the email
  • It shows an error with an invalid license, that expires today
  • Cannot see the Custom Post Type on the Triggers list while creating a Notification
  • Storage templates base path: .../wp-content/plugins/notification/src/templates must exist and be a directory

Was this helpful?

  1. πŸ€Έβ€β™€οΈ User guide

Troubleshooting

Debug quickly why the plugin isn't working

PreviousHow to create NotificationsNextAdvanced

Last updated 6 months ago

Was this helpful?

Make sure the Notification plugin and all the extensions are up-to-date!

The Recipients field is empty

Notification plugin, since v7 uses WordPress' REST API to render the recipients field. You must ensure the /notification endpoint is accessible and the API is accessible.

Nothing is sent

To debug the missing message (Carrier execution) please enable the Notification log in Notification > Settings > Debugging. All the executions will be caught there.

Please make sure the notification suppressing checkbox is turned off if you wish to send the message to the public.

If the notification gets caught, you can inspect the details (ie. if the recipient is set correctly) and if they seem to be ok, check if your WordPress is sending the emails (SMTP is set correctly?) or it can connect to the API (depends on the selected Carrier).

If the notification is not there, you probably found a bug. Please .

Multiple Notifications are sent

Most of the time this is caused by the post editor saving the content multiple times. Ie. Gutenberg saves the main content in one request, taxonomy terms in another request, ACF saves the fields in another request, and so on.

Please activate the feature to prevent this from happening.

Weird characters are being sent in the email

This might be related to the content encoding. You can try to define the email header (activate that in Notification -> Settings -> Carriers -> Email) as follows:

Key

Content-Type

text/html; charset=UTF-8

It shows an error with an invalid license, that expires today

If you experience this issue and you have a valid license, most likely you can see an empty license field on the Notification -> Extensions screen. In this case, simply deactivate the license and activate it again.

If you have an expired Notification license you'd like to renew, contact us at support@bracketspace.com for a 20% discount.

Cannot see the Custom Post Type on the Triggers list while creating a Notification

See:

Storage templates base path: .../wp-content/plugins/notification/src/templates must exist and be a directory

This error will most likely occur in tandem with: Warning: ftp_nlist() expects parameter 1 to be resource, null given

To make sure the plugin works, please add the following to your wp-config.php:

if (!defined('FS_METHOD')) define('FS_METHOD', 'direct');
report it on Github
Background Processing
Custom Post Type support