LESIMOON
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Mail (2)Add the folowing in the “From” field :
Your Business <[email protected]>
Forum: Plugins
In reply to: [Contact Form 7] getting POST 403 () error when i submitDownload : https://downloads.www.ads-software.com/plugin/contact-form-7.4.7.zip
unzip and extract it in site/plugin/contact form 7
Forum: Plugins
In reply to: [Contact Form 7] getting POST 403 () error when i submitI have the same problem.
I’m using custom script before sending the email with this action :add_action( 'wpcf7_before_send_mail', 'function_name' );
Do you? If yes, it might be the problem.
BTW, I rolled back to version 4.7 and everything is OK.Forum: Plugins
In reply to: [Cookie Notice & Compliance for GDPR / CCPA] Trasparent backgroundAny link to your site to help you ?
I just see stackexchange it was impossible to add custom fields before default fields.
The only way would be to create a 100% custom form.I will share it here if I find enough motivation to do it.
By the way, I see on other topic you were an excellent support. Keep up the good work !
I managed to put it at the very end of the registration form (after my custom inputs) by adding a priority in the add_action hook:
if(isset($theChampLoginOptions['enableAtRegister']) && $theChampLoginOptions['enableAtRegister'] == 1){ add_action('register_form', 'the_champ_login_button',11); }
But I don’t know how I can put it at the very begining ??
Forum: Plugins
In reply to: [Cookie Notice & Compliance for GDPR / CCPA] Trasparent backgroundYou rock !
I didn’t know why I didn’t think about it before.
By the way, I did it with
#cookie-notice {background: rgba(0, 0, 0, 0.5) !important;}#cookie-law-info-bar didn’t work.
Forum: Plugins
In reply to: [Contact Form 7] Configuration errorCan you provide a screenshot or your “form” and “e-mail” tab code? (don’t show your real email address :)).
Maybe I will find out the problemForum: Plugins
In reply to: [Contact Form 7] Configuration errorHey,
As you said, the email adress needs to be required.
Also, make sure you use email format and not text format :GOOD : [email* your-email]
BAD: [email your-email]
BAD: [text* your-email]
BAD: [text your-email]Also, I don’t know if you can add name and first name in Reply-To:
Just try: Reply-To: [your-email]If they don’t enter mail, just don’t add reply-to in additional header :p
Forum: Plugins
In reply to: [Cookie Notice & Compliance for GDPR / CCPA] Trasparent backgroundHey,
Thanks for the answer. I would understand if you add it in the pro version.
Keep up the good work.Cheers
Try mail-tester.
Set the given email in the “To:” section of your contact form and send a message.Forum: Plugins
In reply to: [Contact Form 7] Radio button validation in Contact form 7Why don’t you just set a default choice?
[radio radio-999 default:1 “1st choice” “2nd choice”]
Forum: Plugins
In reply to: [Contact Form 7] My contact page does not workingHow are we supposed to help you. You just say “it doesn’t work” without giving any detail or screenshot of your form.
You may find your solution by reading FAQForum: Plugins
In reply to: [Contact Form 7] Validate Sum of 2 FieldsNot sure if it will work but it worth the try.
In the before_send_mail hook, catch the values and verify if A + B < 180
If not, define a value of 999 to A and 999 to B.Add this function in function.php (‘tag-A’ must be the name of your tag)
add_filter( 'wpcf7_validate_number*', 'tag-A-validation', 20, 2 ); function tag-A-validation( $result, $tag ) { $tag = new WPCF7_Shortcode( $tag ); if ($tag->name == 'tag-A'){ $tagA = $_POST['tag-A']; if ( $tagA == 999 ) { $result->invalidate( $tag, "A + B must be < 180"); } } return $result; }