Customize Estimate Submission Form

Submission fields are filterable via si_submission_form_fields.

Example:

<?php
function filter_si_submission_form_fields( $fields = array() ) {
// Remove the budget field
unset( $fields['budget'] );
$fields['examples'] = array(
'weight' => 120,
'label' => __( 'Examples' ),
'type' => 'textarea',
'required' => TRUE,
'placeholder' => 'Some examples of your request.'
);
return $fields;
}
add_filter( 'si_submission_form_fields', 'filter_si_submission_form_fields' );
view raw functions.php hosted with ❤ by GitHub
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.