# WPMU DEV Free Notices module # WPMU DEV Free Notices module (short wpmu-free-notice) is used in our free plugins hosted on WordPress.org It will display a welcome message upon plugin activation that offers the user a 5-day introduction email course for the plugin. After 7 days the module will display another message asking the user to rate the plugin on WordPress.org # How to use it # 1. Insert this repository as **sub-module** into the existing project 2. Include the file `module.php` in your main plugin file. 3. Call the action `wdev_register_plugin` with the params mentioned below. 4. Done! # Upgrading from 1.3.0 version # The 2.0.0 release is backward incompatible with the 1.x versions. To accommodate new functionality and fix WordPress coding standards violations, a lot of the hooks/filters have been refactored. Make sure to change the following: 1. Update the `do_action` hook name from `wdev-register-plugin` to `wdev_register_plugin`. 2. Both `wdev-email-message-` and `wdev-rating-message-` filters have been changed to `wdev_email_title_`/`wdev_email_message_` and `wdev_rating_title_`/`wdev_rating_message_` ## Code Example (from Smush ) ## ``` #!php email message'; return $message; } ``` ``` rating message'; return $message; } ```