Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
So currently what is your question? You want to keep only one or something else?
Shamim HasanKeymasterIf FREE version works then PRO version will also work as both are same code in most of the places.
Can you please set in Front End PM PRO > Settings > Recipient > Max recipients to 1 and check if worksLet me know.
Shamim HasanKeymaster1) Please check after 12 hours. It may resolve automatically. Also for PRO version user there is no more extension to use. All are included in PRO version.
2 + 3 ) as i mentioned in this topic https://www.shamimsplugins.com/support/topic/issue-with-front-end-pm-pro-layout/#post-22876 you can remove all your code and use shortcode
fep_shortcode_new_message_form
instead. passheading="Message"
in that shortcode. It will show “Message” instead of “Contact”Shamim HasanKeymasterPlease use a separate email address for piping email which have no user in your website.
Shamim HasanKeymasteradd 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
gettext
filter.
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_form
shortcode 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.
-
AuthorPosts