Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
May 25, 2019 at 5:59 pm in reply to: Restrict which rolls show up on front end for announcement. #25048Shamim HasanKeymaster
You can add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_filter_to_roles_to_create_announcement', function( $roles ){ unset( $roles['administrator'] ); //set here which role you do not want to show return $roles; });
Shamim HasanKeymasterFor subject field width you can add following code in Front End PM PRO > Settings > Appearance > Custom CSS
#fep-wrapper #message_title { width: 100%; }
For error message can you reply to my email where i deliver the job?
Shamim HasanKeymasterhttps://www.shamimsplugins.com/docs/front-end-pm/customization/remove-minlength-message-title/
For message content instead of
message_title
usemessage_content
Shamim HasanKeymasterPlease see your link. You have one link. But in that link see first part (
/home/xxxxx
). You have added ONLY THIS PART (not full link) twice. which invalided your link. Remove 1 part of this from your link.See screenshot
Attachments:You must be logged in to view attached files.Shamim HasanKeymasterYou are adding form via ajax. so no script is added. Show form model without ajax. or add
wp_enqueue_script( 'fep-shortcode-newmessage' );
in that page somewhere.Shamim HasanKeymasterPlease do following
1. Keep “From Email Address” and “SMTP Username” and this plugin “From Email” same email address.
2. Remove one home/xxxxx from home/xxxxx/home/xxxxx/public_html/…….. ( you have added 2 times home/xxxxx) in your forwarder setup ( point no 6 in https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/email-piping/)Then test and let me know.
Shamim HasanKeymasterIt seems jetpack’s Lazy Loading for images remove width height of image from gravatar..
Shamim HasanKeymasterNow you have added url wrong in your piping setup. You have added home/xxxxx/home/xxxxx/public_html/…….. (2 times ). Please correct this then test.
Also if you use any SMTP plugin that can override this plugin’s email address setup. You can check there.
Shamim HasanKeymasteri cannot see message page without login.
please create a test account and send credentials using https://www.shamimsplugins.com/sensitive-information/Shamim HasanKeymasterYou need to change permission of fep-email-piping.php file to 755
Shamim HasanKeymasterIt does not seems you have added it in right way. Nothing is outputted from this shortcode there. If you add
Test Content
instead of this shortcode, does that output there?
Do your theme/plugin have any documentation how to add content there?Can you give me full code of that area (including ajax and table code)?
Shamim HasanKeymasterI seems your theme is overriding come css.
Can you give me your message page url?Shamim HasanKeymasterThank you for url and credentials.
How did you added those message buttons? What code you added there?Shamim HasanKeymasterIf we know menu slug then we can use that. use like following (change MENU_SLUG with your menu slug)
add_filter( 'wp_nav_menu_MENU_SLUG_items', function( $items, $args ) { $items .= '<li><a href="'. fep_query_url( 'messagebox' ) .'">' . sprintf(__('Message Box%s', 'front-end-pm'), fep_get_new_message_button() ) . '</a></li>'; return $items; }, 99, 2);
Shamim HasanKeymasterI have tested with CF7 v5.1.1 and it is working.
Which version of captcha you are using?
it it working for other forms? eg. login/register?
Did you add shortcode[anr_nocaptcha g-recaptcha-response]
in contact form? -
AuthorPosts