Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Thank you. I have added your screenshot to that docs page.
Shamim HasanKeymasterThank you for your suggestion. I have updated that docs page.
If you need my assistance anytime you can create a support topic.June 26, 2020 at 7:12 pm in reply to: Moving the recaptcha logo up by about 65 pixels or disabling it all together. #38820Shamim HasanKeymasterIf you use V2, you will have an option to show badge in Bottom Left.
Or you can use following css to move it a little higher..grecaptcha-badge { margin-bottom: 65px; }
June 26, 2020 at 4:15 pm in reply to: Moving the recaptcha logo up by about 65 pixels or disabling it all together. #38816Shamim HasanKeymasterYes, it is possible. May you please let me know which version of caaptcha you are using? Can you send me your website link?
Removing logo is against google policy.June 23, 2020 at 10:48 pm in reply to: Limit autosugesstion to users with specific meta value #38752Shamim HasanKeymasterYou can add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_filter_rest_users_args', function( $args ){ if ( in_array( 'mentor', wp_get_current_user()->roles ) ) { $args['meta_query'][] = [ 'key' => 'mentor', 'value' => get_current_user_id(), ]; } return $args; });
(untested)
Change mentor role and meta key in the code as you require.
Let me know.Shamim HasanKeymasterTry like
"g-recaptcha-response":$form.find('input[name="g-recaptcha-response"]').val(),
You can exclude login form from the settings page of this plugin.Shamim HasanKeymasterIt seems that plugin pass hard coded values only. You can add
g-recaptcha-response
in https://plugins.trac.wordpress.org/browser/quadmenu/trunk/assets/frontend/js/quadmenu.js#L1451 (edit in your website’s plugin)Let me know.
Shamim HasanKeymasterCan you please recheck now. I see it is working now.
Shamim HasanKeymasterThank you.
If you can send me your SFTP access of your staging site i can further test there. Please send using https://www.shamimsplugins.com/sensitive-information/Shamim HasanKeymasterIt is under settings page of front end. See screenshot.
If you do not find this option, let me know if you have any custom code for this plugin in your website. There is hook to remove this option if someone want.Attachments:You must be logged in to view attached files.June 18, 2020 at 2:19 am in reply to: One or more fields have an error. Please check and try again. #38621Shamim HasanKeymasterThis changes is not for this plugin, Something changes in Contact Form 7.
You can add following code in your child theme’s functions.php and it will start working againadd_filter( 'wpcf7_verify_nonce', '__return_true' ); add_filter( 'wpcf7_spam', '__return_false' );
Shamim HasanKeymasterPlease see https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/email-beautify/
Default basic template is shifted with this plugin. If you want to create your own you can follow https://www.shamimsplugins.com/docs/front-end-pm-pro/customization-front-end-pm-pro/create-own-email-template/
You can see templates/emails/default.php to get the default email template. You can use this as a starting point.Shamim HasanKeymasterYou can go to Front End PM PRO > Settings > Emails > Email Piping/POP3 > Enable and set to “None”. It will remove key from subject. But remember it will disable Email Piping/POP3 if you are using any one of those.
June 18, 2020 at 12:31 am in reply to: One or more fields have an error. Please check and try again. #38612Shamim HasanKeymasterAs you are using “Hide Captcha for logged in users?”, you need to add additional 2 hooks as described in that docs page.
June 17, 2020 at 2:24 pm in reply to: invalid license key error message after changing domains #38590Shamim HasanKeymasterYou had copied form https://www.shamimsplugins.com/checkout/purchase-history/ right?
We will try to find out if there any issue from our end. -
AuthorPosts