Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
September 16, 2022 at 10:59 pm in reply to: How to create dynamic links to send message to a group? #44897Shamim HasanKeymaster
Can you please try following code to show link
<a href="<?php echo fep_query_url('newmessage', array('fep_send_to_check' => 'group', 'fep_gm_to' => GROUP_ID ) ); ?>">Send Message</a>
Change
GROUP_ID
with your actual group id.Let me know.
September 16, 2022 at 10:53 pm in reply to: Pro Account might have wrongly added my localhost as the website? #44895Shamim HasanKeymasterYou can deactivate from that site and activate in your current live site.
If you still have the issue let me know.
Shamim HasanKeymasterThis may be possible, but query will be too complex. If you need it badly you can contact me through https://www.shamimsplugins.com/hire/
Shamim HasanKeymasterDo you use any caching plugin? try clearing cache?
Did you logged in as the user which you gave me?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.
-
AuthorPosts