Hi Shamim,
Thanks for the plugin, I just found it! Is it possible to see some screenshots of the new beta version?
Hi Shamim,
It works pretty well in my old site.
I want to use it in my new site.
It’s for student and teacher, where registered teacher will have their own role and have an access to the inbox in backend dashboard. Meanwhile the student, can access it through front end.
Is this possible to do so?
Thanks for the great plugin!
Right now it is planned to access to backend dashboard only for administrative purpose. You can moderate message or view all messages between users. And front end for messaging functionality.
In your case, teachers and students both can access message from frontend and message between them.
I’m not sure if this is a bug with the new version, but removing a menu item like the example on your site describes:
if (!is_admin())
remove_action('fep_menu_button', array(fep_menu_class::init(), 'settings'));
to ones child theme function.php throws this error
PHP message: PHP Fatal error: Uncaught Error: Class 'fep_menu_class' not found in
Some of the classes and functions have been changed for better handling. After version release documents will be updated. for removing settings menu (or any other menu) in 3.3.1-beta use following
add_filter('fep_menu_buttons', 'fep342_remove_settings_menu');
function fep342_remove_settings_menu( $menu ) {
unset($menu['settings']);
return $menu;
}
Hi Shamim,
I am not sure to asked this in this thread. But where I can find the official documentation of plugin?
I am not a coder, but would like to call the number of inbox in a menu, and saw this line of code
function messagebox() {
$numNew = fep_get_new_message_button();
$class = 'fep-button';
if ( is_page( fep_page_id() ) && ( !isset($_GET['fepaction']) || $_GET['fepaction'] == 'messagebox') )
$class = 'fep-button-active';
echo "<a class='$class' href='".get_permalink(fep_page_id())."'>".sprintf(__("Message Box%s", 'fep'),$numNew)."</a>";
}
How can I do that?
Maybe just by calling something like
FEP_plugin()->get_inbox_numb()
?
Thanks!
you mean number of unread messages for that user? use fep_get_new_message_number()
Thanks Shamim! I’m now able to remove menu items on the user’s side. I was wondering what other actions/hooks have been changed/added/removed?
Great plugin and love that you’ve added more actions/filters to it š
Have a great weekend,
Hi Shamim,
First off, would like to say I found your current stable version hours ago and it’s almost perfect for what I need. I saw the beta you posted and checked it out and it has features that are amazing such as allowing certain groups to initiate conversations and so on but i’ve ran into a few errors with this new beta and was hoping you could check it out.
1) I sent a message to a test user, went to reply and there is no text box that I can type in. Instead I get the following Message: * No Function or Hook defined for teeny field type” (can view screenshot here: http://puu.sh/pqhYa/84679c309c.png)
2) When I receive an email notifying me that i’ve received a message, there’s no clickable link in the email. It only shows the following text (not clickable at all): Please Click the following link to view full Message.
/messages/?fepaction=messagebox
Hoping you could check this out asap as the new version has features I really need š
Thanks for the great plugin!
Thank you for using this plugin and testing beta version. More people will test more will be revealed before going into live.
in back-end setting page of this plugin in General tab there is a dropdown field called “Front End PM Page”. If you selected that and save it could solve your both problem indirectly.
1. As you have updated from a previous version in you database there was a field named teeny which were removed in beta version, That’s why you were receiving that error. I have added this in recent commit for backward compatibility.
2. Please select a page otherwise this plugin can not determined which page is for this plugin and can not show a link to that page. Also in recent commit i have changed so that from now during install it will automatically set if available also changed default email content type from html to plain text, that will automatically make a clickable link.
Alright cool thanks a ton for being so quick to check it out :]
Also, I noticed another minor error. If im currently not logged into my site and attempt to view my /messages/ page, it’s just a white page with no error notifying me that I must login in order to view this page.
Example can be seen here: https://legionboost.net/messages/
Also I just noticed, if I try to click “SIGN IN” button at the top right on the same blank page, it’ll do nothing due to some sort of conflict or error but if you click that same “SIGN IN” button from any other page, it’ll work as expected.
can you try download again from github and install? I have made some adjustment.