Shamim Hasan
Forum Replies Created
- 
		AuthorPosts
- 
		
			
				
Shamim HasanKeymasterI can see its working fine. See attached screenshot. 
 Do you see any other page? Which user you are logged in?Attachments:You must be logged in to view attached files.Shamim HasanKeymasterCan you please send again? I may missed it. Shamim HasanKeymasterPlease add following code in your theme’s (child theme’s if you are using) functions.php add_action( 'fep_form_field_output_date', function( $field, $errors ){ printf( '<input type="%1$s" id="%2$s" class="%3$s" name="%4$s" placeholder="%5$s" value="%6$s" />', esc_attr( $field['type'] ), esc_attr( $field['id'] ), $field['class'], esc_attr( $field['name'] ), esc_attr( $field['placeholder'] ), esc_attr( $field['posted-value' ] ) ); }, 10, 2);Shamim HasanKeymasterThis plugin is not designed that way and cannot enable that. You can redirect users to login page who are not logged in, then they can login/register there and back to message page to send message. Shamim HasanKeymasterIt needs custom code. You can contact me using https://www.shamimsplugins.com/hire/ if you need code help. July 25, 2022 at 6:42 pm in reply to: Notification emails for announcements stay in pending state #44763Shamim HasanKeymasterCan you please go to Dashboard > Front End PM PRO > Settings > Emails > Email Sending Interval and change to any other value and save changes. Wait selected amount of time and check again. 
 Let me know.July 25, 2022 at 6:38 pm in reply to: List the writings of an author on the site inside a selection form #44762Shamim HasanKeymasterDo you use any plugins to create tours? Or use any custom code? Shamim HasanKeymasterYou can send based on the email address, but user have to be registered in your website. Shamim HasanKeymasterAdd following code in your theme’s (child theme’s if you are using) functions.php add_action( 'fep_display_after_parent_message', function(){ if ( get_current_user_id() != fep_get_message_field( 'mgs_author' ) ) { printf( '<div>Sender Email: %s</div>', fep_get_userdata( fep_get_message_field( 'mgs_author' ), 'user_email', 'id' ) ); } });July 22, 2022 at 2:12 pm in reply to: List the writings of an author on the site inside a selection form #44739Shamim HasanKeymaster1. Can an author has multiple articles? 
 2. Is it wordpress post? Does it saved in wp post table?July 19, 2022 at 11:40 pm in reply to: Is there a way to export who has read an announcement? #44727Shamim HasanKeymasterBy default it does not support export announcements data, But you can access directly to database and export from there. It needs some DB knowledge. Shamim HasanKeymasterThis message system require user id. So we cannot send/receive messages from non-members. Shamim HasanKeymasterWhere you want to show sender’s email address? July 19, 2022 at 11:34 pm in reply to: List the writings of an author on the site inside a selection form #44724Shamim HasanKeymasterWhere are authors’ writing saved? Anyone can send to any author and select any author’s writing? Shamim HasanKeymasterYou need to echo from there. Like following (change as you require) add_action( 'fep_form_field_output_date', function( $field, $errors ){ echo 'This is date field'; }, 10, 2);
- 
		AuthorPosts