• Resolved Paul Kevin

    (@rixeo)


    Hey there,

    I noticed there exists a filter in the class Forminator_Fields called forminator_fields . This is fired too early and adding your own custom field will not get included in the field list. I noticed that adding the filter in the function forminator_get_fields() such that it looks like :

    
    function forminator_get_fields() {
    	$forminator = Forminator_Core::get_instance();
    
    	return apply_filters( 'forminator_fields', $forminator->fields );
    }
    

    Makes the plugin more extendable and allows for addition of custom fields. Please consider this in the next release as I am trying to add more custom fields as an extension 🙂

    Warm Regards
    Paul Kevin

Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘[Feature Request] Custom Field Filter’ is closed to new replies.