Title: menu_order and post_parent missing
Last modified: August 21, 2016

---

# menu_order and post_parent missing

 *  Resolved [chrisvallleyoc](https://wordpress.org/support/users/chrisvallleyoc/)
 * (@chrisvallleyoc)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/menu_order-and-post_parent-missing/)
 * I’m not seeing the post_parent or menu_order fields in the predefined section
   of the imports despite them being in the database and extracting correctly.
 * Any idea how I can get these two to work? Everything else works great!
 * [http://wordpress.org/extend/plugins/supra-csv-parser/](http://wordpress.org/extend/plugins/supra-csv-parser/)

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

 *  Plugin Author [Joseph Persie](https://wordpress.org/support/users/zmijevik/)
 * (@zmijevik)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/menu_order-and-post_parent-missing/#post-3838017)
 * can you submit you email address to the contact form?
 *  Plugin Author [Joseph Persie](https://wordpress.org/support/users/zmijevik/)
 * (@zmijevik)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/menu_order-and-post_parent-missing/#post-3838020)
 * fix released in the latest versions
 *  Thread Starter [chrisvallleyoc](https://wordpress.org/support/users/chrisvallleyoc/)
 * (@chrisvallleyoc)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/menu_order-and-post_parent-missing/#post-3838032)
 * I see the fields now but everything I upload is putting “0” into the db for both
   those fields. I can give you admin access if it helps? Here is the debug code:
 *     ```
       Array
       (
           [post_id] =>
           [function] => wp.newPost
           [args] => Array
               (
                   [post_title] => Test Product
                   [post_type] => product
                   [terms_names] =>
                   [terms] =>
                   [custom_fields] => Array
                       (
                           [0] => Array
                               (
                                   [key] => post_parent
                                   [value] => 19725
                               )
   
                           [1] => Array
                               (
                                   [key] => menu_order
                                   [value] => 1337
                               )
   
                           [2] => Array
                               (
                                   [key] => sku
                                   [value] => 999.0000
                               )
   
                           [3] => Array
                               (
                                   [key] => regular_price
                                   [value] => 5
                               )
   
                       )
   
                   [post_status] => publish
                   [post_author] =>
                   [post_password] =>
                   [post_excerpt] =>
                   [post_date] =>
                   [post_date_gmt] =>
                   [post_thumbnail] =>
                   [comment_status] =>
                   [ping_status] =>
                   [post_format] =>
                   [enclosure] =>
                   [post_parent] =>
                   [menu_order] =>
               )
   
       )
       POST /dev13378919841/wp-content/plugins/supraCsvPremium//xmlrpc/supra_xmlrpc.php HTTP/1.0
       Host: www.orthoclassic.com
       Content-Type: text/xml
       User-Agent: The Incutio XML-RPC PHP Library
       Content-Length: 2464
   
       <?xml version="1.0"?>
       <methodCall>
       <methodName>wp.newPost</methodName>
       <params>
       <param><value><string></string></value></param>
       <param><value><string>admin</string></value></param>
       <param><value><string>d9$67rtg</string></value></param>
       <param><value><struct>
         <member><name>post_title</name><value><string>Test Product</string></value></member>
         <member><name>post_type</name><value><string>product</string></value></member>
         <member><name>terms_names</name><value><string></string></value></member>
         <member><name>terms</name><value><string></string></value></member>
         <member><name>custom_fields</name><value><array><data>
         <value><struct>
         <member><name>key</name><value><string>post_parent</string></value></member>
         <member><name>value</name><value><string>19725</string></value></member>
       </struct></value>
         <value><struct>
         <member><name>key</name><value><string>menu_order</string></value></member>
         <member><name>value</name><value><string>1337</string></value></member>
       </struct></value>
         <value><struct>
         <member><name>key</name><value><string>sku</string></value></member>
         <member><name>value</name><value><string>999.0000</string></value></member>
       </struct></value>
         <value><struct>
         <member><name>key</name><value><string>regular_price</string></value></member>
         <member><name>value</name><value><string>5</string></value></member>
       </struct></value>
       </data></array></value></member>
         <member><name>post_status</name><value><string>publish</string></value></member>
         <member><name>post_author</name><value><string></string></value></member>
         <member><name>post_password</name><value><string></string></value></member>
         <member><name>post_excerpt</name><value><string></string></value></member>
         <member><name>post_date</name><value><string></string></value></member>
         <member><name>post_date_gmt</name><value><string></string></value></member>
         <member><name>post_thumbnail</name><value><string></string></value></member>
         <member><name>comment_status</name><value><string></string></value></member>
         <member><name>ping_status</name><value><string></string></value></member>
         <member><name>post_format</name><value><string></string></value></member>
         <member><name>enclosure</name><value><string></string></value></member>
         <member><name>post_parent</name><value><string></string></value></member>
         <member><name>menu_order</name><value><string></string></value></member>
       </struct></value></param>
       </params></methodCall>
       transport error - HTTP status code was not 200Problem Ingesting Test Product
       ```
   
 *  Thread Starter [chrisvallleyoc](https://wordpress.org/support/users/chrisvallleyoc/)
 * (@chrisvallleyoc)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/menu_order-and-post_parent-missing/#post-3838045)
 * It looks like they trying to go into custom meta fields when menu_order and post_parent
   are standard fields in the wp_posts database:
 * wp_posts:
 * post_parent: bigint(20) unsigned
    menu_order: int(11)
 *  Plugin Author [Joseph Persie](https://wordpress.org/support/users/zmijevik/)
 * (@zmijevik)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/menu_order-and-post_parent-missing/#post-3838046)
 * send me the credentials for dev access
 *  Thread Starter [chrisvallleyoc](https://wordpress.org/support/users/chrisvallleyoc/)
 * (@chrisvallleyoc)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/menu_order-and-post_parent-missing/#post-3838058)
 * Where should I send them?
 *  Plugin Author [Joseph Persie](https://wordpress.org/support/users/zmijevik/)
 * (@zmijevik)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/menu_order-and-post_parent-missing/#post-3838059)
 * can you send me you email in the contact form?
    [http://supraliminalsolutions.com/pages/contact/](http://supraliminalsolutions.com/pages/contact/)

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

The topic ‘menu_order and post_parent missing’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/supra-csv-parser_c8cece.svg)
 * [Supra CSV](https://wordpress.org/plugins/supra-csv-parser/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/supra-csv-parser/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/supra-csv-parser/)
 * [Active Topics](https://wordpress.org/support/plugin/supra-csv-parser/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/supra-csv-parser/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/supra-csv-parser/reviews/)

 * 7 replies
 * 2 participants
 * Last reply from: [Joseph Persie](https://wordpress.org/support/users/zmijevik/)
 * Last activity: [12 years, 11 months ago](https://wordpress.org/support/topic/menu_order-and-post_parent-missing/#post-3838059)
 * Status: resolved