Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
It is already in our TO-DO list, also we are working on this. May be next major version we will be able to include this feature.
Thanks
Shamim HasanKeymaster1. Plugin is for lifetime. So once you purchase any plugin from this website, you can use this plugin lifetime.
2. Updates and support for one year. So if you want updates and support after one year you need to renew your license first.Thanks
Shamim HasanKeymasterPlease check following
1. When replying message from email, “to” email address is same as your piping email setup
2. in your forwarder fep-email-piping.php location in correct.December 7, 2017 at 3:06 pm in reply to: Only admin not working / Not able to reply to messages #8403Shamim HasanKeymasterSending message to admin: You can achieve that is 2 ways
1. Set 0 to Front End PM PRO > Settings > Recipient > Max recipients
2. Follow https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/role-to-role-block/As you are setting only one admin, so “To” field will be hidden and all message will be delivered to that admin.
If you want to send message from user page you can use https://www.shamimsplugins.com/docs/front-end-pm/shortcode/fep_shortcode_new_message_form/ shortcode. In “to” you can use your admin nicename, so that message will be delivered to that admin.
December 7, 2017 at 11:14 am in reply to: Only admin not working / Not able to reply to messages #8384Shamim HasanKeymasterFor reply issue, Please set up Front End PM PRO > Settings > General > Front End PM Page
What is not working when sending message to admin? What error you are getting?
Shamim HasanKeymasterPlease add following code in Front End PM PRO > Settings > General > Custom CSS
.fep-button { background-color: #ffffff !important; } .fep-button-active { background-color: #b5b5b5 !important; } .fep-success { background-color: #b5b5b5 !important; } #fep-header, #fep-content, #fep-footer { border: 1px solid #333333; }
Shamim HasanKeymasterwhen message is sent
fep_action_message_after_send
is fired. first argument is message id of newly created message.If you want to show only one message then you have to custom code for that. You can use
fep_get_message_with_replies()
function to retrieve any message and show them anywhere.Shamim HasanKeymasterPlease remove your forwarder and setup a new one by following https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/email-piping/
Shamim HasanKeymasterPlease see forwarder settings for email piping, there is a location field, you have to update that.
https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/email-piping/Shamim HasanKeymasterWhat button color you want? I can assist you for some css changes.
Shamim HasanKeymasterCannot you send attachment? or you can send attachment but not show with message?
Shamim HasanKeymasterFor message page url in email you can set “Front End PM Page” in Dashboard > Front End PM PRO > Settings > General.
To auto fill your selected users, you can use https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/only-admin/ ( users do not have to be admin, you can use normal users also in that list).
If you want to pre-populate (without click), you can use https://www.shamimsplugins.com/docs/front-end-pm/customization/user-name-pre-populate-new-message/ , for multiple users you can pass their id’s separated by comma.
You can even use https://www.shamimsplugins.com/docs/front-end-pm/shortcode/fep_shortcode_new_message_form/ (here you can easily change value by JS).
If you want to select onclick (what you are showing in your screencast) you can use
selector.tokenInput("add", {id: x, name: y});
where “id” is user id and “name” is user display name. If you want to select one recipient only, you can callselector.tokenInput("clear");
before adding.Let me know.
Shamim HasanKeymasterPlease add following code in your theme’s (child theme’s if any) functions.php
add_action( 'fep_directory_table_column_content_name', function( $user ){ $shop_name = get_user_meta( $user->ID, 'pv_shop_name', true ); if( $shop_name ) echo $shop_name; else echo $user->display_name; });
Shamim HasanKeymasterwhat is meta name of that field? Did you use any plugin to create that field?
November 19, 2017 at 12:33 pm in reply to: Aggregate messages related to a single receiver or a group #8083Shamim HasanKeymasterCurrently there is no feature like that in this plugin. You may do it by custom code, but that will be complicated.
-
AuthorPosts