Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
I may not get your question properly. If you want to hide your reply, then why you will reply in first place? May you please elaborate your question a little so that i can better answer you if my above answer is wrong?
Shamim HasanKeymasterRecipients name never shows in that page as multiple recipients issue. If i get a better idea how to show the name including multiple recipients case, i will add that in future version.
If you want now you can edit
view-message-heads.php
template following https://www.shamimsplugins.com/docs/front-end-pm-pro/customization-front-end-pm-pro/change-templates/Shamim HasanKeymasterAs this plugin support multiple recipients, showing other users name is little confusing as there may have more than one receiver. If you support to send message to only one receiver then you can follow following approach.
If you want to show other users avatar add following code in your theme’s (child theme you are using one) functions.php
add_filter( 'fep_remove_own_avatar_from_messagebox', '__return_true' );
If you want to show other user name add following code in your theme’s (child theme you are using one) functions.php
add_action( 'fep_message_table_column_content_author', function(){ $participants = fep_get_participants( fep_get_the_id() ); foreach( $participants as $participant ) { if ( get_current_user_id() != $participant ) { ?><span class="fep-message-author"><?php echo fep_user_name( $participant ); ?></span><span class="fep-message-date"><?php echo fep_get_the_date( 'mgs_last_reply_time' ); ?></span><?php break; } } });
Shamim HasanKeymasterYou can follow https://www.shamimsplugins.com/docs/front-end-pm/customization/remove-minlength-message-title/
For message area limit, usemessage_content
instead ofmessage_title
Shamim HasanKeymasterI am very sorry for this bug.
Please download again this plugin and install. This bug is already solved and updated.Let me know.
Shamim HasanKeymasterYou can add following code in your theme’s (child theme’s if you are using) functions.php
add_action( 'init', function(){ remove_action( 'woocommerce_checkout_after_order_review', array( anr_captcha_class::init(), 'wc_form_field' ) ); add_action( 'woocommerce_checkout_before_order_review', array( anr_captcha_class::init(), 'wc_form_field' ) ); });
You can also use another action hook instead of
woocommerce_checkout_before_order_review
for other locations. See other action hooks in https://docs.woocommerce.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/Shamim HasanKeymasterThank you for contacting.
Sorry, it is not possible. It can be shown above the payment options, But i think that is too much above.Shamim HasanKeymasterPlease see https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/pop3-feature/
It is recommended to use a separate email address for POP3, as all emails will be deleted after process.
Shamim HasanKeymasterLicense data is cached in your website for 1 week so that your website do not make frequent query to license server. So sometimes it makes confusion when you change something to license (upgrade, renew etc).
May 5, 2020 at 1:15 pm in reply to: We Can Only See 15 Messages at a Time, How Do we Show All Messages #37403Shamim HasanKeymasterMost recent 15 message thread will be there.
1. Do you see next and previous button bellow your messages?
2. Can you send me a screenshot of your message page?You can also set how many messages you want to show in single page. Please set in Dashboard > Front End PM PRO > Settings > General > Messages per page
Shamim HasanKeymasterShamim HasanKeymaster1. Message sidebar is too narrow to show full subject, We may show couple of words
2. We can make that happen, but it doesn’t work well with wp editor. So you will have to use textarea editor as message editor.If both are ok you can contact through https://www.shamimsplugins.com/hire/
Shamim HasanKeymasterI have added 2 new filter in your child theme’s functions.php.
1. One to redirect to woocommerce dashboard custom tab when click new message or messageboxadd_filter( 'fep_query_url_without_esc_filter', function( $url, $args ){ return add_query_arg( $args, wc_get_account_endpoint_url( 'premium-support' ) ); }, 10, 2);
2. Another to show only other person avatar (remove own avatar) from message sidebar
add_filter( 'fep_remove_own_avatar_from_messagebox', '__return_true' );
To show message title in sidebar, it needs custom work.
Shamim HasanKeymasterThank you.
It seems you are usingfep_enable_email_send
hook to disable email sending. Please remove this filter and it will work.I have temporarily edited this plugin code to omit this check. But when you update this plugin, it will change to original state.
So please remove this filter from your custom code.
Let me know.
Shamim HasanKeymasterYou need custom code to make it possible. If you know php i can guide.
-
AuthorPosts