Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
When searching messages it search in message subject and content.
Shamim HasanKeymasterIf you go to Front End PM PRO > Settings > Licenses, is it shows license expiry date under license field?
If you go to your website update page( eg. https://www.example.com/wp-admin/update-core.php ) does it shows this plugin update? You can refresh that page couple of times to see it that works.Shamim HasanKeymasterYou can add group and add your “support” users to that group. You can add all user from a role easily. see https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/group-messaging/
Now students can send message to this group and any support users from that group can reply that message.
Shamim HasanKeymasterDid you add your license key and activated?
Do your website have permission to connect to license server?Shamim HasanKeymasterThen you will need to add click event individually to every column except checkbox column.
Shamim HasanKeymasterIt will work in version 10.1.x also
Shamim HasanKeymasterPlease see our previous discussion about this error https://www.shamimsplugins.com/support/topic/problems-with-installation/
Last time it was your hosting problem. Please contact them.Shamim HasanKeymasterIt is just an array. use like array
$user_groups['group_slug'] = 'Group Name'; $user_groups['group_slug2'] = 'Group Name2'; $user_groups['group_slug3'] = 'Group Name3';
Shamim HasanKeymasterDid you changed your theme and try?
January 8, 2019 at 11:39 am in reply to: Previous message conversation in the e-mail (email chain) #20529Shamim HasanKeymasterYou can create an email tag (https://www.shamimsplugins.com/docs/front-end-pm-pro/customization-front-end-pm-pro/add-own-email-tag/) and use that tag in email. Which customize such way that it will send previous messages.
Shamim HasanKeymasterchange your code last part with following code
add_action( 'fep_display_after_message', function(){ if ( $cus_fep_textbox1 = fep_get_meta( fep_get_the_id(), 'cus_fep_textbox1', true ) ) { echo esc_html( $cus_fep_textbox1 ); } });
Shamim HasanKeymasteradd following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_get_user_groups', function( $user_groups, $user_id ){ $user_groups['group_slug'] = 'Group Name'; return $user_groups; }, 10, 2);
You can pass any group here. Users will be able to send message to those groups.
Shamim HasanKeymasterUpdated pot file sent to your email address. Please use that instead.
Let me know.Shamim HasanKeymasterOpen pot file in Poedit then click “Update from Code”. Then save. Then translate.
Shamim HasanKeymasterYou can use
fep_get_user_groups
filter to show any groups you want. -
AuthorPosts