Skip to content

Instantly share code, notes, and snippets.

@zachskaggs
Last active August 29, 2015 14:22
Show Gist options
  • Save zachskaggs/c21274dff086a0b8c15b to your computer and use it in GitHub Desktop.
Save zachskaggs/c21274dff086a0b8c15b to your computer and use it in GitHub Desktop.
<?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