sdnetzhammer
Forum Replies Created
-
Hi,
thanks for your answer and sorry for my late response.
I did everything you said. Deactivating all plugins did help and the plugin “Invisible reCaptcha” was the culprit. All other plugins don’t cause problems with elementor. I switched to an alternative recaptcha plugin.
Thank you!
Forum: Plugins
In reply to: [Job Postings] Translation full-time and part-timeHello Karl-Heinz,
you can try it with my solution above or with the one from Kim.
Forum: Plugins
In reply to: [Job Postings] Translation full-time and part-timeHello,
I don’t know how important it is for google if you check “other” instead of “part-time”. But I had the same problem like you and I fixed it with a different solution. In the “job-postings.php” file, I added this code at the end:
add_filter( 'gettext', 'theme_change_comment_field_names', 20, 3 ); function theme_change_comment_field_names( $translated_text, $text, $domain ) { switch ( $translated_text ) { case 'Full-time' : $translated_text = __( 'Vollzeit', 'theme_text_domain' ); break; case 'Part-time' : $translated_text = __( 'Teilzeit', 'theme_text_domain' ); break; } return $translated_text; }
The only problem here is that the code is going to be removed after an update of the plugin. So you have to copy it again.
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] Required file not validatingHello,
I have the same problem. But deleting or commenting out the line 35 in cf7cf.php didn’t help. Is there any other solution to fix this problem?Forum: Plugins
In reply to: [Contact Form 7] Required file doesn’t work with other required fieldsI tried the contact form without groups and it works as it should. So I think the groups are causing the problem. Similar cases have already been reported in the plugin’s support forum. Since the file fields in my form are also outside of a group, it didn’t occur to me that the groups are causing the error. I will contact the support of the plugin.
Thanks for your help!
Forum: Plugins
In reply to: [Contact Form 7] Required file doesn’t work with other required fieldsThanks for your answer @codekraft !
I deleted the id “#abstandsfeld” but the problem is still there.