CF7 Quiz Integration
Marc Wagner
Januar 24, 2025
Das Forge12 Double-Opt-In Plugin (Avada | Elementor | CF7) Plugin ermöglicht es, durch die eingebauten Hooks, externe Captcha-Tools zu integrieren.
WordPress Captcha Plugin von Forge12
Wir bieten ein Captcha Plugin an, das effektiv vor Bots und Spam schützt. Dieses erhalten Sie kostenlos im Pluginstore von WordPress und ist kompatibel zum Double-Opt-In Plugin.
Integration von CF7 Quiz #
Damit das Double-Opt-In Plugin mit dem Quiz von Contact Form 7 verwendet werden kann, müssen Sie den folgenden Code integrieren. Wir empfehlen dazu das Plugin WP Code. Alternativ können Sie den Code auch bequem in Ihrer functions.php einfügen.
/**
* Entferne die CF7 Quiz Validierung
*/
add_action('f12_cf7_doubleoptin_before_send_default_mail', 'disable_cf7_quiz_validation');
function disable_cf7_quiz_validation(){
remove_filter( 'wpcf7_validate_quiz', 'wpcf7_quiz_validation_filter', 10, 2 );
}Der Code entfernt beim Bestätigen des Opt-Ins temporär die Validierung für das Quiz von Contact Form 7, wodurch die Opt-In Mail versendet werden kann.
Artikel von:
Marc Wagner
Hi Marc here. I’m the founder of Forge12 Interactive and have been passionate about building websites, online stores, applications and SaaS solutions for businesses for over 20 years. Before founding the company, I already worked in publicly listed companies and acquired all kinds of knowledge. Now I want to pass this knowledge on to my customers.

