Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_enable_email_send', '__return_false' );Shamim HasanKeymaster1) You can delete emails from your email address anytime. It will not have any effect in messages.
If you use POP3 then it will automatically be deleted from email address.You can use gmail/yahoo if you use POP3. goole for respective pop3 setup details.
2) Email address should not be sent between one another. Sender email should always be the “From Email” setup in this plugin or SMTP plugin if you are using. Please recheck and let me know.
Shamim HasanKeymasterYou can use
gettextfilter.
Add following code in your theme’s (child theme’s if you are using) functions.phpadd_filter( 'gettext', function( $translated_text, $text, $domain ){ if ( 'front-end-pm' == $domain && 'Add more file' == $text ){ $translated_text = 'add more files'; } return $translated_text; }, 20, 3 );Shamim HasanKeymaster1) going to just/spam box depend on so many things. You can move some emails from junk to inbox and check if that helps.
2) It looks like your file have permission issue. Did you changed file permission? If yes and still have same issue You can move fep-email-piping.php file directly to wp-content directly and changed this file permission to 755. then point to this file path in email forwarder setup
Let me know.
Shamim HasanKeymasterSo when a user send a message to another user in your website the receiver user do not get email notification, right? If yes, please follow https://www.shamimsplugins.com/docs/front-end-pm-pro/troubleshoot/email-notification-not-receiving/
Let me know.
Shamim HasanKeymasterRemove all the code you have added.
This plugin already have a build in shortcode for this. Usefep_shortcode_new_message_formshortcode instead of your custom shortcode.You can know more about this shortcode in https://www.shamimsplugins.com/docs/front-end-pm/shortcode/fep_shortcode_new_message_form/
Let me know
Shamim HasanKeymasterIt seems you are using 2 shortcodes. Remove 1 and it should correct your issue.
Let me know.
Shamim HasanKeymasterThese tables are in use by latest version.
Shamim HasanKeymasterAdd following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_current_user_can', function( $can, $cap, $id ){ if( 'access_message' !== $cap || ! $can ) { return $can; } if ( ! count_user_posts( get_current_user_id(), 'jobs' ) ) { $can = false; } return $can; }, 10, 3);Shamim HasanKeymasterAs you are using it for announcements it should be
{{announcement_url}}
Please see bellow input text box what is allowed in that input box.Let me know.
Shamim HasanKeymasterPlease again check https://www.shamimsplugins.com/support/topic/customer-admin-only-use-case/#post-21261
Setup for “New Message” should be
“From Role” as “Subscriber” and “To Role” as “All Roles” and “Block For” as “New Message”
Let me know.
Shamim HasanKeymasterPlease give me following screenshots
1. Role to role block settings
2. Front End PM PRO > Settings > Recipient pageShamim HasanKeymasterBy default group dropdown shows to only members of the group.
Are you a user of “Members Only” role of your website? You can add yourself to that group to see that group in your dropdown.Shamim HasanKeymasterPlease check and let me know followings
1. Front End PM PRO > Settings > General > Front End PM Page setup is correct
2. Front End PM PRO > Settings > Emails > Email Content Type is set to “HTML”Also are you using any browser/ Email client to view your email? Please check email source code if that email link is correct,
Shamim HasanKeymasterHi Katie
So you want to only allow subscriber role users can send message to admin, others cannot send message, not even to admin, right? -
AuthorPosts