Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
This is a security feature, Users should not get this error if they send message normally.
1. Are you always getting this error when sending message/reply?
2. when you get this error is message sent?
3. Do you use any custom code for this plugin in your website?
4. Do you use any caching plugin? If yes, try to exclude message page from caching and try.Let me know.
Shamim HasanKeymasteradd following code in your theme’s (child theme’s if any) functions.php
add_filter( 'fep_filter_show_which_name', function( $which ){ return 'user_login'; });
This will show user_login instead of display name.
Shamim HasanKeymasterThis plugin uses “Display Name” all the places. Please go to Dashboard > Users > Your Profile > Name to see the difference of names. Display name is made to show publicly and this plugin use that.
Also You can use
fep_filter_show_which_name
hook to change which name will be used.Shamim HasanKeymasterIs your another topic https://www.shamimsplugins.com/support/topic/new-message-form-shortcode-autopopulate-to-specific-user/ solve this topic also?
April 25, 2018 at 12:27 pm in reply to: New message form shortcode autopopulate to specific user #13677Shamim HasanKeymasterI do not see any lightbox code here. Check your syntax with lightbox code.
April 25, 2018 at 12:22 am in reply to: New message form shortcode autopopulate to specific user #13666Shamim HasanKeymasterPlease use as
echo do_shortcode( '[fep_shortcode_new_message_form to="' . $user . '" subject="test"]' );
April 24, 2018 at 10:41 pm in reply to: New message form shortcode autopopulate to specific user #13660Shamim HasanKeymasterPlease see https://www.shamimsplugins.com/docs/front-end-pm/shortcode/fep_shortcode_new_message_form/ for details of this shortcode. “To” argument support user_nicename (Not first name/last name etc).
Where are you adding this shortcode? In php template or in post editor? post editor can not process php code. To pass variable you have to add this in php template or anywhere where php code can be parsed. If you add in php template let me know full code of this shortcode so that i can correct for you if you have any error.
Shamim HasanKeymasterYou can pass {{receiver}} and it will show receiver name. If you want to send receiver id then you need some php code. You can use
fep_eb_email_legends
filter hook to add your own legend.Shamim HasanKeymasterIt should not take any time if not cached by any other plugin or server.
Shamim HasanKeymasterAre you using any caching plugin? If yes, try deactivating it.
If not work, please give me access to your website so that i can try. Full backup your website before giving me access.Shamim HasanKeymasterCurrently there is no separate class for unread messages. I will try to add in next version. If you need urgently you can override
messagebox.php
template to achieve this. Instruction to override template in https://www.shamimsplugins.com/docs/front-end-pm-pro/customization-front-end-pm-pro/change-templates/Excerpt is intended to have same length ( 100 characters ). but some messages does not have that much characters. So it become uneven. You can use
fep_get_the_excerpt
filter hook to return ever length as you want.Shamim HasanKeymasterwhich few users not added to group? Are they shown as suggestion when you type their name in members field?
did you select them from suggestion field to add?
I did not understand your second question. what is batch of Group Users?This link may help a little. https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/group-messaging/
Shamim HasanKeymasterIf you deactivate dokan, is this notice go away? If yes please let dokan developer know this. You can give them this link so that they understand where the issue is. https://github.com/shamim2883/front-end-pm/blob/75eb5f4b1ca72910f499e4733e376f20e8896577/functions.php#L1584
For temporary solution you can replace
$args[0]
with@$args[0]
in functions.php on line 1584April 21, 2018 at 8:54 pm in reply to: In Directory displaying 2 profile photo background icon (avatar) #13570Shamim HasanKeymasterAre you using any custom code for this plugin? Or customized directory template? By default it shows one avatar per user.
Shamim HasanKeymasterPlease use following code in you theme’s (child theme’s if any) functions.php
add_action('asgarosforum_custom_profile_content', function( $user_object ){ echo do_shortcode( '[fep_shortcode_message_to to="'. $user_object->user_nicename .'"]' ); });
-
AuthorPosts