Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
July 2, 2019 at 9:13 am in reply to: Adding sender's user_login or um url profile tag to Email. #26414Shamim HasanKeymaster
Please add following code in your theme’s (chilld theme’s if you are using) functions.php
add_filter( 'fep_eb_email_legends', function( $legends, $mgs ){ $legends['sender_username'] = array( 'description' => __('Sender Username', 'front-end-pm'), 'where' => array( 'newmessage', 'reply' ), 'replace_with' => ! empty( $mgs->mgs_author ) ? fep_get_userdata( $mgs->mgs_author, 'user_login', 'id' ) : '', ); return $legends; }, 10, 2);
Shamim HasanKeymasterPlease let me know the value of front End PM PRO > Settings > Recipient > Max recipients
Also will you use the value as 1 or more? (Code will be different if you use 1)Shamim HasanKeymasterIf you use “v2 invisible” captcha then you can set to show on left. See settings page of this plugin.
If you use v3 then google currently not allow any settings to position on left. But you can hide and add your own instead. Please see https://developers.google.com/recaptcha/docs/faq#id-like-to-hide-the-recaptcha-badge-what-is-allowed
Shamim HasanKeymasterFor future ref:
GoDaddy wordpress managed hosting block wordpress cron.
disable wordpress cron and enable real cron was the solution.Shamim HasanKeymasterI cannot access some of pages of your website, Always timeout.
If you can you can send me screenshot so that i can see.
Please go to https://www.shamimsplugins.com/live-chat/ and start chat (this link will be available for next 30 minutes)Shamim HasanKeymasterPlease change sending interval to 1 and sending per interval to 5.
Then wait a minute and refresh website couple of times and see if it start sending.If not can you give me access to your website to test?
Shamim HasanKeymasterIt seems you are using GoDaddy hosting, they have build in caching. You can ask them to exclude message page if possible. otherwise your users will see messages couple of seconds later.
Is your email issue for announcements solved now?
Shamim HasanKeymasterFor some reason this plugin database table was not created.
Which plugin you are using for caching? ask them how to deactivate caching in a page.
Announcement emails are queued to sending. Please see https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/announcement-email-queue/Shamim HasanKeymasterPlease check now.
Also disable message page caching. Otherwise your user will not get message immediately when send.
This plugin already have build-in caching.Shamim HasanKeymasterHi again,
May be i was not clear in my questions1. Did you use this plugin before starting this issue?
2. Do you have messages (messages between users) from previous version?If you want me to have a look please send me credentials using https://www.shamimsplugins.com/sensitive-information/
Shamim HasanKeymasterPlease let me know following.
1. Are you using this plugin (FREE or PRO) from before?
2. Do you have messages from previous version?
3. Check database and see if there any database table name start withPREFIX_fep_
where PREFIX if your database table prefix. if yes, let me know how many and what are they.
4. Do your set database user in wp-config.php have permission to create database table?June 28, 2019 at 12:22 am in reply to: sending message to another group add the user to all groups in the settings #26230Shamim HasanKeymasterAfter sending message if you go to Dashboard > Front End PM PRO > Settings > Recipient > Groups, do that user shows in the groups which they were not member before?
Shamim HasanKeymasterTo reverse add following code in your child theme’s functions.php
add_filter( 'fep_filter_get_message_with_replies', function( $args ){ $args['order'] = 'DESC'; return $args; });
To show reply form at top you will need to override
view-message.php
template. Instruction in https://www.shamimsplugins.com/docs/front-end-pm/customization/change-templates-2/OR you can add a button to jump to reply form. add
<a href="#fep-content-single-reply-form">Reply</a>
where you want to show that button.Shamim HasanKeymasterThis plugin already support notification if your website is open in their browser.
You can try https://wordpress.org/plugins/onesignal-free-web-push-notifications/ to send push notification. (still you need to customize to integrate).June 21, 2019 at 11:19 pm in reply to: Unable to submit message on latest version – showing Refresh this page and try again. #26064Shamim HasanKeymasterThank you. Glad it solve your issue.
I have found a topic in your mentioned plugin which explain it. It is for Contact form 7 but may be same issue here. https://wordpress.org/support/topic/conflict-with-contact-form-7-4/#post-9535815 . You can try same solution if your want. (instead of “contact-form-7” use “front-end-pm” in the url) -
AuthorPosts