I've been trying to add a filter to the multi-page next button, in order to add bootstrap-related css class with no evident results. Should it work or it's an unsupported feature? Does the field object type button even exist?
Thanks for your support.
Andrea
add_action('gform_field_css_class', 'roots_gform_next_button', 10, 3);
function roots_gform_next_button($classes, $field, $form){
if($field['type'] == 'button'){
$classes .= ' btn-primary';
}
return $classes;
}