Adjust Time for Specific Form Action
add_filter( ‘frm_autoresponder_time’, ‘change_default_autoresponder_time’, 10, 2 ); function change_default_autoresponder_time( $time, $args ) { $time_field_id = 25; //replace 25 with the ID of your Time field $form_action_id = 250; //replace 250 with your form Action ID if ( $args[‘action’]->ID == $form_action_id &&…Continue reading