Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Are you sending message or announcement?
Shamim HasanKeymasterPlease go to Dashboard > Front End PM PRO > Settings > Misc
Shamim HasanKeymasterYou can create a form with “Gravity forms” or “Contact Form 7” and use their custom submit hook to send a message using that data.
Eg. if you use Contact Form 7, you can usewpcf7_before_send_mail
hook to create a message using that data.
It need custom coding.You can hire me if you need me to code for you. Use https://www.shamimsplugins.com/hire/
June 20, 2018 at 10:41 pm in reply to: Email replies to group messages are not being sent back out to entire group #15155Shamim HasanKeymaster7. in clas-fep-group-message.php after
function send_email_participants( $participants, $postid ){
addif( 'threaded' == fep_get_message_view() ){ $postid = fep_get_parent_id( $postid ); }
June 20, 2018 at 9:35 pm in reply to: Site getting a 504 Gateway Time-out error after submitting message #15147Shamim HasanKeymasterare you in https://wordpress.slack.com/ ? Please see https://make.wordpress.org/chat/
June 20, 2018 at 8:51 pm in reply to: Site getting a 504 Gateway Time-out error after submitting message #15142Shamim HasanKeymasterDo you use slack? knock me there @shamim51
June 20, 2018 at 8:22 pm in reply to: Site getting a 504 Gateway Time-out error after submitting message #15136Shamim HasanKeymasterPlease enable debug (add
define( 'WP_DEBUG', true );
in your wp-config.php) then send a message to group. Let me know if any error shows.
Also check your server log to see what errors are there.Let me know.
Shamim HasanKeymaster“FEP Contact Form” is not maintained. Do not use that plugin.
You can use
[fep_shortcode_new_message_form to="ADMIN_NICENAME"]
(change ADMIN_NICENAME) shortcode in any page/post. It will show a form. filling that will send message directly to that admin. You can also use same shortcode to send message to user (change ADMIN_NICENAME according, dynamically also you can fill this, see https://www.shamimsplugins.com/docs/front-end-pm/shortcode/fep_shortcode_new_message_form/ for details).As your screenshots, you are using custom form. If you satisfy with above shortcode form, that will be good otherwise you have to make custom changes.
June 20, 2018 at 12:33 pm in reply to: Site getting a 504 Gateway Time-out error after submitting message #15128Shamim HasanKeymaster“Group Message” and “Multiple Recipient” are separate settings. They act differently.
Please let me know following
1. getting 504 when sending group message or multiple recipients (in “To” field)?
2. How many members you have in group which you are sending to?
3. Create a test group with 5/6 members and send message to that group, are you getting 504?
4. How many total messages and announcements you have?
5. Do you use any caching plugin?June 19, 2018 at 2:30 pm in reply to: Instead of typing Each user name or ID can we have one excel copy paste system #15098Shamim HasanKeymasterShamim HasanKeymasterThere are lots of server out there. It is not possible to know configuration for all of them. I can only support if you have cPanel. as you do not have cPanel you have to do as your own or contact your host support. You can also google.
Target is to forward your email to a php script (front-end-pm-pro/pro/fep-email-parser/fep-email-piping.php)
June 19, 2018 at 2:19 pm in reply to: Email replies to group messages are not being sent back out to entire group #15095Shamim HasanKeymasterFollow step by step
1. class-fep-cpt.php change https://github.com/shamim2883/front-end-pm/commit/61f11cb4f402dacfb657b7293c5320e92dc3fb64in clas-fep-group-message.php change following
2. changeadd_filter( 'fep_filter_display_participants', array($this, 'display_participants' ), 10, 3 );
toadd_filter( 'fep_filter_display_participants', array($this, 'display_participants' ) );
3. addadd_filter( 'fep_filter_cpt_display_participants', array($this, 'display_participants' ) );
bellow previous line
4. changeif( ! $participants && $group = get_post_meta( $postid, '_fep_group', true ) ){
toif( $group = get_post_meta( $postid, '_fep_group', true ) ){
5. changefunction display_participants( $out, $par, $participants ){
tofunction display_participants( $out ){
6. changeif( ! $participants && $group = get_post_meta( get_the_ID(), '_fep_group', true ) ){
toif( $group = get_post_meta( get_the_ID(), '_fep_group', true ) ){
June 19, 2018 at 12:24 am in reply to: Email replies to group messages are not being sent back out to entire group #15076Shamim HasanKeymasterNext version will be released within this month.
If you need urgently i can give you this issue fix code tomorrow.June 18, 2018 at 11:35 pm in reply to: Email replies to group messages are not being sent back out to entire group #15072Shamim HasanKeymasterThank you for your well explanation. I already found the issue. Next version it will be fixed.
-
AuthorPosts