Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
You can use shortcode https://www.shamimsplugins.com/docs/front-end-pm/shortcode/fep_shortcode_new_message_form/ which support ajax message submit.
Main new message send page does not support ajax yet.
Shamim HasanKeymasterCan you create a test website in your server with your same configuration and give me access?
Shamim HasanKeymasterNo attachments received. Please send to my email (if you know) or contact through https://www.shamimsplugins.com/contact-us/
Shamim HasanKeymasterWe are talking about Group Message feature. If we create a group in eg. WhatsApp and send a message, is there any reply to sender only button?
Happy to discuss further. To discuss further please create a new topic.
Shamim HasanKeymasterDoes that error shows initially when page load or it shows when send message?
Can you give me of your message page url? (also a test account credentials to try send test message). If yes please send using https://www.shamimsplugins.com/sensitive-information/Shamim HasanKeymasterDid i make any custom extension for you? Can you send me that custom extension? Or reply that email where i deliver you the job?
I cannot remember what i changed for you. If you can send me that extension or code i can easily find solution for you.
Shamim HasanKeymasteryou can add following code in your theme’s (child theme’s if you are using) functions.php
add_action( 'fep_action_message_after_send', function( $mgs_id ){ $admins = array( 1 ); //your admin ID if( isset( $_POST['fep_action'] ) && 'shortcode-newmessage' == $_POST['fep_action'] ){ FEP_Participants::init()->insert( $mgs_id, $admins ); } });
Change 1 with your admin id
Shamim HasanKeymasterare you sending message from shortcode form or main interface?
Can you view other messages? When viewing messages if you click sidebar gravatars does that message load?Shamim HasanKeymasterThat shortcode does not support multiple recipients.
If you want to add a user (eg admin) to all messages from that shortcode That is possible.But if you want to add different user to different messages then that need to be custom coded.
Shamim HasanKeymasterPlease see https://www.shamimsplugins.com/docs/front-end-pm/shortcode/fep_shortcode_new_message_form/
suppose your admin user_nicename isadmin
then add like following
[fep_shortcode_new_message_form to="admin"]
Shamim HasanKeymasterIf you want to send email notification to sender only that can be easily done.
But if you want to send reply to sender only that needs to be custom coded.May 26, 2019 at 9:43 am in reply to: Restrict which rolls show up on front end for announcement. #25063Shamim HasanKeymasterUse like
unset( $roles['administrator'], $roles['student'], $roles['faculty'] );
Shamim HasanKeymasterYou can use shortcode https://www.shamimsplugins.com/docs/front-end-pm/shortcode/fep_shortcode_message_to/ to show a button above reply form. When someone will click that button will redirect to message page with “To” field pre-populated with sender name.
May 25, 2019 at 5:59 pm in reply to: Restrict which rolls show up on front end for announcement. #25048Shamim HasanKeymasterYou can add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_filter_to_roles_to_create_announcement', function( $roles ){ unset( $roles['administrator'] ); //set here which role you do not want to show return $roles; });
Shamim HasanKeymasterFor subject field width you can add following code in Front End PM PRO > Settings > Appearance > Custom CSS
#fep-wrapper #message_title { width: 100%; }
For error message can you reply to my email where i deliver the job?
-
AuthorPosts