Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Please fill up Subject and Content of all emails ( New message, reply message and announcement email) in Front End PM PRO > Settings > Emails Then try.
Let me know.
Shamim HasanKeymasterIs normal email sent from your website? eg register, lost password email?
Please go to Dashboard > Front End PM PRO > Settings > Emails and see if From Email is same domain email or not. Also please give me screenshot of Front End PM PRO > Settings > Emails page.Shamim HasanKeymasterYou can use https://www.shamimsplugins.com/contact-us/
Shamim HasanKeymasterif it is stagging site can i have access? please full backup your website before giving me access.
Shamim HasanKeymasterI have updated to 2.0.1 and it is working.
Please remove this extension what you already installed and install it without modifying zip. Let see if working.Shamim HasanKeymasterI see ultimate member current version 1.3.88
is not it the plugin we are working with https://wordpress.org/plugins/ultimate-member/ ?Shamim HasanKeymasterShamim HasanKeymasterThank you for contacting.
I will try to build a custom extension and release to everyone.Shamim HasanKeymasterYou can add
#fep-wrapper{width: 100% !important;}
in Front End PM PRO > Settings > General > Custom CSSThat theme is not well responsive. If this not works you can ask that theme developer, they might have better solution.
Shamim HasanKeymasterPlease change theme to default theme then try.
Let me know.Shamim HasanKeymasterWhen message in changed from hidden to shown add this code there, this will clear cache so that you get correct count.
$participants = fep_get_participants( $message_id ); foreach( $participants as $participant ) { delete_user_option( $participant, '_fep_user_message_count' ); }
change $message_id with which message is hidden to shown
Shamim HasanKeymasterPlease send a message to that user after added this code. That should delete previous cache for that user and show proper count.
Shamim HasanKeymasterPlease send a message to that user after added this code. That will delete previous cache for that user and show proper count.
It will be better if you can hide message when that message is sent rather then when view.
Shamim HasanKeymasteradd following code in your theme’s (child theme’s if any) functions.php
add_filter('fep_menu_buttons', function( $menu ){ unset($menu['announcements']); return $menu; }, 99);
Shamim HasanKeymasterYou have added
$args = array(
‘post_parent’ => $ref->mes_id,
‘post_type’ => ‘any’,
‘numberposts’ => – 1,
‘post_status’ => ‘any’
);
here you have declared $args which override original $args.In messagebox no child messages is shown, so where child messages shown?
Use your same function in both hook i have given, which will cache proper count.
-
AuthorPosts