I tried using it on 3.9.1 and it won’t activate, it gives up the following error:
Parse error: syntax error, unexpected T_STRING in /home3/autonovi/public_html/gharghurfc/wp-content/plugins/organizational-message-notifier/organizational-message-notifier.php on line 31
According to the file line 31 is:
namespace OrganizationalMessageNotifier { (that is EXACTLY how it shows in the file).
I’m trying to use it on a multisite version of WordPress.
I’m guessing something was added to a WordPress upgrade that has rendered this plugin obsolete? ??
https://www.ads-software.com/plugins/organizational-message-notifier/
]]>I made some modifications in your plugin (notice now on transparent full screen black background – on my wpmu portal i need my users MUST view my messages ?? and while them dont press ‘i read message’ they view a black background with message on it :))
and also i am translate .po file on russian lang, so if you have interest, i may send modified files to you, send me email on [email protected], i’m reply on it.
https://www.ads-software.com/plugins/organizational-message-notifier/
]]>Hi,
I just wanted to say that you have some PHP Notices and fix them for you:
file: includes/message-table.php
line: 49
from:
$order = ( $_REQUEST["order"] == "asc" ) ? "ASC" : "DESC";
to:
$order = ( isset($_REQUEST["order"]) && $_REQUEST["order"] == "asc" ) ? "ASC" : "DESC";
file: includes/settings-ui.php
line: 229
from:
<input type="checkbox" name="settings[mail_notification][enabled]" <?php checked( $settings->mail_notification["enabled"] ); ?> />
to:
<input type="checkbox" name="settings[mail_notification][enabled]" <?php checked( isset($settings->mail_notification["enabled"]) ? $settings->mail_notification["enabled"] : false ); ?> />
PS: you should set WP_DEBUG to TRUE when developing plugins
https://www.ads-software.com/plugins/organizational-message-notifier/
]]>Hi,
after upating to 2.0 I can’t access OMN anymore. As Super-Admin I see it in the root-site. But no options or controlpanel in network.
Thanks a lot for this great plugin
Daniel
https://www.ads-software.com/extend/plugins/organizational-message-notifier/
]]>When you go to an admin page of network, you will see (not a blank page, but in addition of the content):
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘\OrganizationalMessageNotifier\MessagesUI etwork_admin_menu’ not found or invalid function name in /home/rainb0w/public_html/wp-includes/plugin.php on line 406
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘\OrganizationalMessageNotifier\SettingsUI etwork_admin_menu’ not found or invalid function name in /home/rainb0w/public_html/wp-includes/plugin.php on line 406
Thanks for your help ??
https://www.ads-software.com/extend/plugins/organizational-message-notifier/
]]>Any way of allowing HTML support for the email notifications?
https://www.ads-software.com/extend/plugins/organizational-message-notifier/
]]>thanks for this great plugin
can you tell me how i delete a message
i can’t find it
thanks in front
https://www.ads-software.com/extend/plugins/organizational-message-notifier/
]]>Hello,
First of all thank you for this plugin. It does exactly what I wanted (except for the fact that the messages should be sent to all users instead of admins, so I changed the get_users
arguments)
The thing which I would like you to know is, for the plugin installation, you have the following code in your database.php
file
register_activation_hook( __FILE__,'omn_plugin_activation' );
But, it should’ve been under organizational-message-notifier.php
after require_once plugin_dir_path( __FILE__ ).'includes/database.php';
Otherwise the database won’t be created on plugin install.
Thank you.
https://www.ads-software.com/extend/plugins/organizational-message-notifier/
]]>