Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
March 2, 2023 at 9:13 am in reply to: Hide possibility to uncheck to receive e-mail fron announcement #45340Shamim HasanKeymaster
You 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
December 12, 2022 at 11:16 pm in reply to: How to add a bcc email id of an admin on every messages sent to recipient? #45183Shamim HasanKeymasterHi again,
I do not see any easy path for your requirement. You can contact through https://www.shamimsplugins.com/hire/ if you like so that i can try to write some code to achieve this.December 9, 2022 at 12:13 am in reply to: How to add a bcc email id of an admin on every messages sent to recipient? #45170Shamim HasanKeymasterWe can send a copy to any email address ( sent you code in my previous reply), but cannot change user “to” email address
Shamim HasanKeymasterShamim HasanKeymasterCurrently you will have to modify code to achieve this. In future i will try to add this option.
Shamim HasanKeymasterPlease uncheck Front End PM PRO > Settings > General > Show Branding Footer
Shamim HasanKeymasterWhat information you want to show as checkbox and radio button?
You can create your own. Please see https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/email-beautify/
Shamim HasanKeymasterFor testing please go to Front End PM PRO > Settings > Recipient > Max recipients and set to 1.
Let me know.Shamim HasanKeymaster1. Which one is not working? Incoming emails or out going emails? Or both?
2. How many users you have in a single message?Also please try https://www.shamimsplugins.com/docs/front-end-pm-pro/troubleshoot/email-notification-not-receiving/
-
AuthorPosts