Title: Additional custom fields
Last modified: September 1, 2016

---

# Additional custom fields

 *  Resolved [rtandoh](https://wordpress.org/support/users/rtandoh/)
 * (@rtandoh)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/additional-custom-fields-1/)
 * Hi,
 * Very nice plugin.
 * I have gotten it working with Gravity Forms (v1.9.4) and Gravity Forms + Custom
   Post Types (v3.1.5), so users can submit events.
 * I would like to add additional custom fields to your custom post type, e.g. a
   field to hold the name of the event organiser? Would you be able to provide guidance
   about how I might do this?
 * Thanks,
    rt.
 * [https://wordpress.org/plugins/pronamic-events/](https://wordpress.org/plugins/pronamic-events/)

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

 *  Plugin Author [Remco Tolsma](https://wordpress.org/support/users/remcotolsma/)
 * (@remcotolsma)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/additional-custom-fields-1/#post-7690880)
 * If you are not a WordPress developer you could consider to use the “Advanced 
   Custom Fields” plugin:
    [https://nl.wordpress.org/plugins/advanced-custom-fields/](https://nl.wordpress.org/plugins/advanced-custom-fields/)
 * If you are familiair with WordPress hooks you can also use the `pronamic_event_fields`
   filter from the Pronamic Events plugin:
    [https://github.com/pronamic/wp-pronamic-events/blob/1.2.1/admin/meta-box-event-details.php#L59-L87](https://github.com/pronamic/wp-pronamic-events/blob/1.2.1/admin/meta-box-event-details.php#L59-L87)
 * You could for example add the following code/function to a custom plugin or your
   custom theme functions.php file:
 *     ```
       <?php
   
       function my_pronamic_event_fields( $fields ) {
           $fields['organiser'] = array(
               'id'       => 'pronamic_event_organiser',
               'label'    => __( 'Organiser', 'my-text-domain' ),
               'meta_key' => '_pronamic_event_organiser',
           );
   
           return $fields;
       }
   
       add_filter( 'pronamic_event_fields', 'my_pronamic_event_fields' );
       ```
   
 *  Thread Starter [rtandoh](https://wordpress.org/support/users/rtandoh/)
 * (@rtandoh)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/additional-custom-fields-1/#post-8195258)
 * Thanks,
    rt.

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

The topic ‘Additional custom fields’ is closed to new replies.

 * ![](https://ps.w.org/pronamic-events/assets/icon-256x256.png?rev=1525976)
 * [Pronamic Events](https://wordpress.org/plugins/pronamic-events/)
 * [Support Threads](https://wordpress.org/support/plugin/pronamic-events/)
 * [Active Topics](https://wordpress.org/support/plugin/pronamic-events/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/pronamic-events/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/pronamic-events/reviews/)

## Tags

 * [custom fields](https://wordpress.org/support/topic-tag/custom-fields/)

 * 2 replies
 * 2 participants
 * Last reply from: [rtandoh](https://wordpress.org/support/users/rtandoh/)
 * Last activity: [9 years, 8 months ago](https://wordpress.org/support/topic/additional-custom-fields-1/#post-8195258)
 * Status: resolved