Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Please send me you form page url so that i can have a look.
Shamim HasanKeymasterPlease follow https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/translate/
Let me know.
September 10, 2019 at 7:53 pm in reply to: where can I get Front End PM Pro (10.1.5 version)? #29022Shamim HasanKeymasterPlease contact using https://www.shamimsplugins.com/contact-us/. I will send you in your email.
Shamim HasanKeymasterWhere did you put your translation file? If you keep in wp-content/languages/plugins then you will not lose.
After that also first keep backup your translation file then upgrade to pro.Shamim HasanKeymasterCan you please send me your form page url?
Shamim HasanKeymasterIt is in TODO list.
But It may take some time. Next version is almost ready. This feature is not included in next version.I am still not sure where to put that button, what will be design etc. If you have any idea you can share.
September 1, 2019 at 11:54 am in reply to: Make the email and phone black out in the message content. It's possible? #28739Shamim HasanKeymasterYou can use
/[^ ]+@[^ ]{5,}/
instead of/[^@\s]*@[^@\s]*\.[^@\s]*/
if that works.Shamim HasanKeymasterHeading is “FEP Admins”.
After this changes
1. Can student send group message?
2. Can student send message to other student?
3. Can’t admin and teacher send group message?
4. If you set admins can’t student send message to those admins?Please let me know which part is not working so that i can investigate further.
August 30, 2019 at 10:40 pm in reply to: License renewed but notification in WordPress says otherwise #28695Shamim HasanKeymasterThank you for renew.
For performance reason license data is cached for 1 week. It will automatically show updated information when current cached expire.If you want to show now, please remove license key then click “Save Changes” again input license key again “Save Change
August 30, 2019 at 10:38 pm in reply to: Make the email and phone black out in the message content. It's possible? #28693Shamim HasanKeymasterIt is working fine here.
Please recheck if you have any more code which can do this.Shamim HasanKeymasterFor email troubleshooting you can follow https://www.shamimsplugins.com/docs/front-end-pm-pro/troubleshoot/email-notification-not-receiving/
To change email subject/content please follow https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/email-beautify/
Shamim HasanKeymasterYou want to hide full message system from some roles or some of the features?
From group users you can visit Front End PM PRO > All Groups. It is not possible and unselect any user from front end. You will have to create separate group without those users so that you can send message to those users to whom you want.
Shamim HasanKeymaster1. Set “To Role” also as student role. Others are same as above. That way students will not be able to send message to other students. For more instruction about this please see https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/role-to-role-block/
2. Add following code in your theme’s (child theme’s if you are using) functions.php.
add_filter( 'fep_get_option', function( $value, $option ){ if( 'can-send-to-group' == $option ){ if( array_intersect( [ 'administrator', 'teacher' ], wp_get_current_user()->roles ) ){ $value = true; } else { $value = false; } } return $value; }, 10, 2 );
Change
teacher
with your teacher user role. After this administrators and teachers will be able to send group message. students will not be able to send group message.3. For only admin setup please see https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/only-admin/
Shamim HasanKeymaster1. Please go to Front End PM PRO > Settings > Security > Role to Role Block > Add New and set “From Role” as student role, “To Role” and teacher role and “Block For” as “New Message”. Then save changes. After this settings students will not be able to send message to teacher.
2. Add following code in your theme’s (child theme’s if you are using) functions.php.
add_filter( 'fep_get_option', function( $value, $option ){ if( 'can-send-to-group' == $option ){ if( in_array( 'teacher', wp_get_current_user()->roles ) ){ $value = true; } else { $value = false; } } return $value; }, 10, 2 );
Change
teacher
with your teacher user role. After this only teachers will be able to send group message.Shamim HasanKeymasterHow to know which user is teacher or student? are they in different role?
-
AuthorPosts