Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Yes possible. Please add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_email_piping_code_identifier', function( $identifier ){ return ['[#', ']']; });
Shamim HasanKeymasterYou can use
fep_email_piping_code_identifier
filter hook to changeMESSAGE KEY
part. Change key length directly is not supported. I will try to add a filter in next version to change key length.Shamim HasanKeymasterCurrently we support role based bulk user import. Please see https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/group-messaging/
March 16, 2023 at 2:07 pm in reply to: Allow author user role to send announcement, but only to certain contacts #45379Shamim HasanKeymasterYou can follow https://www.shamimsplugins.com/support/topic/create-announcements/#post-26559
But will be tricky to only to the users he/she currently has messages with. This needs to be custom coded (if possible).
Shamim HasanKeymasterPlease recheck that file permission is correct (755). This error normally come when wrong file permission or location is wrong.
If file permission is correct please check full file path is correct. You can try after removing first/
if that helps, in that case file path will behome1/btoursal/btours.al/wp-content/plugins/front-end-pm-pro/pro/fep-email-parser/fep-email-piping.php
Shamim HasanKeymasterAs it worked before, but after changing plan, it is not working. Can you please contact their support what is changed between their plans?
You can again follow https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/email-piping/ from the beginning.
For the support time, as this is not my full time job, it is very hard for me to ensure time. I am ready to refund if you do not want to use this plugin.
Shamim HasanKeymasterThis plugin is not a real time chat plugin and is not designed that way. This is more like an email plugin.
Shamim HasanKeymasterThis feature is not there.
Thank you for your nice suggestion. I will try to implement this in future.March 2, 2023 at 9:13 am in reply to: Hide possibility to uncheck to receive e-mail fron announcement #45340Shamim HasanKeymasterYou can use following code
add_filter( 'fep_form_fields', function( $fields ){ if ( ! fep_is_user_admin() ){ unset( $fields['allow_ann'] ); } return $fields; });
This will remove announcement option from there.
February 25, 2023 at 9:51 am in reply to: Hide possibility to uncheck to receive e-mail fron announcement #45317Shamim HasanKeymasterYou can use following code
add_filter( 'fep_menu_buttons', function( $menu ){ if ( ! fep_is_user_admin() ){ unset( $menu['settings'], $menu['announcements'] ); } return $menu; }, 99);
Shamim HasanKeymasterYou want to send same announcement to all users when they first registered? Or individual announcement?
If same announcement, Please create an announcement to all roles and send me id of that announcement. I will write some code for you.
Shamim HasanKeymasterShamim HasanKeymasterYou can use like
unset( $groups[ 7930 ], $groups[ 2343 ], $groups[ 1209 ] );
Shamim HasanKeymasterYes, piping is instant.
You can check if piping setup is correct. If possible setup again. https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/email-piping/December 12, 2022 at 11:17 pm in reply to: How to create dynamic links to send message to a group? #45185Shamim HasanKeymasterYes, you can use my above provided code to create a shortcode using do_shortcode
-
AuthorPosts