caldera_forms_processor_value

Caldera Forms -- Responsive, drag and drop form builder.

This filter can be used to change the value that would be returned from a processor.

add_filter( 'caldera_forms_processor_value', function( $value, $field, $args, $config, $form ){
	
	if( 'amount' == $field ) {
		$value = 42;
	}

	return $value;
}, 15, 5 );

This filter was added in Caldera Forms 1.3.1.

Where Does This Code Go?

When using WordPress hooks to customize Caldera Forms or other plugins you should not modify the plugin files, or you will lose your changes when you update the plugin. Instead you should create a small plugin to hold the custom code. It's easy, learn how here.

Technically you can add the custom code to your theme's functions.php, but then you will not be able to change your theme and keep these customizations.

Learn More