Title: custom fields missing from mapping
Last modified: August 21, 2016

---

# custom fields missing from mapping

 *  Resolved [cclass](https://wordpress.org/support/users/cclass/)
 * (@cclass)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/custom-fields-missing-from-mapping/)
 * Hi,
 * I have a custom post type with 13 custom fields of meta data. When I try to import
   a CSV, only 5 show up when it comes time to map the fields from the file.
 * I have no issues adding a post with all of the meta data normally.
 * Thanks in advance for your help!
 * Chris
 * [http://wordpress.org/plugins/wp-ultimate-csv-importer/](http://wordpress.org/plugins/wp-ultimate-csv-importer/)

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

 *  [fredricksujin](https://wordpress.org/support/users/fredricksujin/)
 * (@fredricksujin)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/custom-fields-missing-from-mapping/#post-4187330)
 * Which plugin are you using ? Our importer is supporting only for Custom Post 
   Type UI plugin. ACF support is in roadmap.
 *  Plugin Author [Smackcoders Inc.,](https://wordpress.org/support/users/smackcoders/)
 * (@smackcoders)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/custom-fields-missing-from-mapping/#post-4187401)
 * Hence not replied this issue is taken as resolved.
 * Thanks
 *  [corys8646](https://wordpress.org/support/users/corys8646/)
 * (@corys8646)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/custom-fields-missing-from-mapping/#post-4187450)
 * I’m having a similar issue, it appears that there is a limit of 30 custom fields
   to display. By default WP limits this in the wp-admin/includes/template.php file.
 * function meta_form( $post = null ) {
    global $wpdb; $post = get_post( $post );
   $limit = (int) apply_filters( ‘postmeta_form_limit’, 30 ); $keys = $wpdb->get_col(“
   SELECT meta_key FROM $wpdb->postmeta GROUP BY meta_key HAVING meta_key NOT LIKE‘\_%’
   ORDER BY meta_key LIMIT $limit” ); if ( $keys ) natcasesort($keys); ?>
 * I have modified this to be 100, and now all custom fields show up when I make
   a new post, but is still limited to 30 in the plugin importer. I couldn’t find
   anywhere in the plugin where is specifies a limit on custom fields.
 *  [corys8646](https://wordpress.org/support/users/corys8646/)
 * (@corys8646)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/custom-fields-missing-from-mapping/#post-4187451)
 * Should mention that I am using WP-Types to create my fields, and most of my fields
   are showing up in the importer, just cutting off the last few at the 30 limit.
 *  [corys8646](https://wordpress.org/support/users/corys8646/)
 * (@corys8646)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/custom-fields-missing-from-mapping/#post-4187454)
 * Found it..
    Line 187 of SmackImpCE.php
 * Change
    $limit = ( int )apply_filters(‘postmeta_form_limit’, 30); To $limit =(
   int )apply_filters(‘postmeta_form_limit’, 100);
 *  Plugin Author [Smackcoders Inc.,](https://wordpress.org/support/users/smackcoders/)
 * (@smackcoders)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/custom-fields-missing-from-mapping/#post-4187455)
 * Limited 30 for the performance and usability stand.

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

The topic ‘custom fields missing from mapping’ is closed to new replies.

 * ![](https://ps.w.org/wp-ultimate-csv-importer/assets/icon.svg?rev=3131703)
 * [WP Ultimate CSV Importer – WordPress Import & Export for CSV, XML & Excel](https://wordpress.org/plugins/wp-ultimate-csv-importer/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-ultimate-csv-importer/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-ultimate-csv-importer/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-ultimate-csv-importer/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-ultimate-csv-importer/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-ultimate-csv-importer/reviews/)

 * 6 replies
 * 4 participants
 * Last reply from: [Smackcoders Inc.,](https://wordpress.org/support/users/smackcoders/)
 * Last activity: [12 years, 6 months ago](https://wordpress.org/support/topic/custom-fields-missing-from-mapping/#post-4187455)
 * Status: resolved