Saving Order
-
Hi,
Thanks for this very useful plugin it works great.The only thing missing is the ability to save the selected fields chosen and their order. Currently everytime you want to export entries you have to reselect the fields you want exporting. Also, I have a custom field added using the following filter:
add_filter( 'gform_export_fields', 'add_fields', 10, 1 ); function add_fields( $form ) { array_push( $form['fields'], array( 'id' => 'custom_field1', 'label' => __( 'oldnumber', 'gravityforms' ) ) ); return $form; }
I need this field to be exported at Col 1, but every time I come back to do a new export this field is dropping to the bottom of the list. So I need a way to save the order of the fields too.
Can this be possible?
Thanks.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Saving Order’ is closed to new replies.