Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Sorry for delayed responses.
This plugin is not abandoned.
Hope i will be able to provide support regularly as before from now on.Shamim HasanKeymasterCan you give me a sort screen record of this?
Shamim HasanKeymasterCan you provide me your website url where you are trying to add the license?
Shamim HasanKeymasterPossible. message_to_id already support array of user ids.
Shamim HasanKeymasterThis plugin do not use email address but username. So may be your other plugin use email address to generate username. They remove @ symbol when they create username.
Can you give me a screenshot where you are checking and what error you are getting?
Shamim HasanKeymasterShamim HasanKeymasterBy default only admin can send announcements. If you want any other role to allow please follow https://www.shamimsplugins.com/support/topic/create-announcements/#post-26559
November 7, 2024 at 12:45 pm in reply to: Updating PHP from 7.4 to higher leads to Fatal error #45913Shamim HasanKeymasterDid you use this plugin in any other language? If so did you added placeholder in translated string? If you are not sure can you provide me your translated file so that i can check?
Shamim HasanKeymasterYou can use
fep_action_message_after_send
hook to save message id in database.
You can find some examples in https://www.shamimsplugins.com/support/search/fep_action_message_after_send/February 12, 2024 at 12:46 pm in reply to: Limit messages for free members & link messaging system to buddypress #45872Shamim HasanKeymaster1. Are you using any plugin for free and pro members? How are you determining which one is free or pro members?
2. I did not integrate buddypress yet, so cannot assist with that. but integrated with bbpress previously. You can get an idea from https://www.shamimsplugins.com/docs/front-end-pm/customization/user-name-pre-populate-new-message/February 12, 2024 at 12:35 pm in reply to: Unable to add 2 or more recipients with the same first name #45871Shamim HasanKeymasterI am trying to fix it. It may take some time.
In the meantime you can use different display name for the user. Use following code to show full name instead of just first nameadd_filter( 'fep_filter_show_which_name', function( $which ){ return 'first_last_name'; });
January 26, 2024 at 2:12 pm in reply to: action fep_email_interval_event not triggered every time #45863Shamim HasanKeymasterIf you change it to 1 minute again, does that event still works? Is 1 minute event added by any other plugin? 15 minutes interval is added and default for this plugin.
Shamim HasanKeymasterThis plugin provided “Every 15 minutes” (fep_15_min) interval. Others are added by your other plugins/themes. So you can switch back to this.
event name isfep_email_interval_event
.
Also please take note message get priority over announcement when sending queue emails. If you send message for more than 5 users (default set) it usages queue to send emails.You can see
class-fep-email-beautify.php
file (email_interval_event_callback
method) for code.Shamim HasanKeymasterYou can see
class-fep-directory.php
file (line: 149) for the code. Sorry no documentation is writted for this hook.
You can wrap code if a if block to prevent this. Like followingfunction mail_icon( $user ) { if ( get_current_user_id() != $user->ID ) { ?><a href="<?php echo fep_query_url( 'newmessage', array( 'fep_to' => $user->user_nicename ) ); ?>"><img src="[URL]" /></a><?php } }
Shamim HasanKeymasterPlease use like following
function mail_icon( $user ) { ?><a href="<?php echo fep_query_url( 'newmessage', array( 'fep_to' => $user->user_nicename ) ); ?>"><img src="[URL]" /></a><?php }
-
AuthorPosts