Last active
August 29, 2015 14:22
-
-
Save zachskaggs/c21274dff086a0b8c15b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function example_disable_newsletter_signup( $form_id ) { | |
global $ninja_forms_processing; | |
$form_id = $ninja_forms_processing->get_form_ID(); | |
if ( $form_id == 1 ) { | |
$opt_in = $ninja_forms_processing->get_field_value( 23 ); | |
if ( $opt_in == 'unchecked' ) { | |
$ninja_forms_processing->update_form_setting( 'constant_contact_signup_form', false ); | |
} | |
} | |
} | |
add_action( 'ninja_forms_pre_process', 'example_disable_newsletter_signup' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment