Title: unity3software's Replies | WordPress.org

---

# unity3software

  [  ](https://wordpress.org/support/users/unity3software/)

 *   [Profile](https://wordpress.org/support/users/unity3software/)
 *   [Topics Started](https://wordpress.org/support/users/unity3software/topics/)
 *   [Replies Created](https://wordpress.org/support/users/unity3software/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/unity3software/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/unity3software/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/unity3software/engagements/)
 *   [Favorites](https://wordpress.org/support/users/unity3software/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Adminimize] New Version released, Tests are welcome.](https://wordpress.org/support/topic/new-version-released-tests-are-welcome/)
 *  [unity3software](https://wordpress.org/support/users/unity3software/)
 * (@unity3software)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/new-version-released-tests-are-welcome/page/2/#post-6855073)
 * Hello Frank,
 * I’ve tested the “select all” functionality and it works great! Thanks for your
   on going contribution to this wonderful plugin
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pods - Custom Content Types and Fields] Please Do Not Bump Repeated Fields Again!](https://wordpress.org/support/topic/please-do-not-bump-repeated-fields-again/)
 *  Thread Starter [unity3software](https://wordpress.org/support/users/unity3software/)
 * (@unity3software)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/please-do-not-bump-repeated-fields-again/#post-4585403)
 * All the best to you Scott from another “under the weather” developer. (okay, 
   where’s my medicine)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pods - Custom Content Types and Fields] Please Do Not Bump Repeated Fields Again!](https://wordpress.org/support/topic/please-do-not-bump-repeated-fields-again/)
 *  Thread Starter [unity3software](https://wordpress.org/support/users/unity3software/)
 * (@unity3software)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/please-do-not-bump-repeated-fields-again/#post-4585398)
 * I’ve been away for a few weeks but I am anxiously anticipating the release of
   repeated fields. I’m tired of work arounds for such a great framework. We’re 
   counting on you PODS!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pods - Custom Content Types and Fields] Please Do Not Bump Repeated Fields Again!](https://wordpress.org/support/topic/please-do-not-bump-repeated-fields-again/)
 *  Thread Starter [unity3software](https://wordpress.org/support/users/unity3software/)
 * (@unity3software)
 * [12 years ago](https://wordpress.org/support/topic/please-do-not-bump-repeated-fields-again/#post-4585380)
 * Thanks for the update Scott. PODs is becoming more deeply integrated into my 
   WordPress builds. It will be a breath of fresh air to add repeated fields into
   my arsenal.
 * Anticipating 3.0
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pods - Custom Content Types and Fields] Presave Function – Edit Post Title](https://wordpress.org/support/topic/presave-function-edit-post-title/)
 *  Thread Starter [unity3software](https://wordpress.org/support/users/unity3software/)
 * (@unity3software)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/presave-function-edit-post-title/#post-4585911)
 * Josh, _pods\_api\_pre\_save\_pod\_item_ does not work because _$pieces[‘fields’]_
   only refers to custom meta fields. The default post fields such as _‘post\_title’_
   are only found in: _$pieces[‘object\_fields’]_. However, these only appear to
   be field descriptors because there is no _‘value’_ property to any of these fields.
 * Gattermeier, here is my current hack for this POD bug. Hook into the _‘wp\_insert\
   _post\_data’ filter_, which runs for every post add/edit/update. To access the
   metadata, use: _$postarr[ ‘pod\_meta\_%my\_meta\_name%’]_. By the way, this filter
   runs BEFORE _pods\_api\_pre\_save\_pod\_item_.
 *     ```
       function wp_pre_save( $data , $postarr ) {
           //$data['post_title'] = $postarr['pods_meta_width'].'x'.$postarr['pods_meta_length'];
           if ($data['post_type'] == 'metal_building') {
               $width = $postarr['pods_meta_width'];
               $length = $postarr['pods_meta_length'];
               if (!empty($width) && !empty($length)) {
                   $data['post_title'] = $data['post_name'] = $width.'x'.$length;
               }
           }
           return $data;
       }
   
       add_filter( 'wp_insert_post_data', array($this,'wp_pre_save'), '99', 2 );
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pods - Custom Content Types and Fields] Presave Function – Edit Post Title](https://wordpress.org/support/topic/presave-function-edit-post-title/)
 *  Thread Starter [unity3software](https://wordpress.org/support/users/unity3software/)
 * (@unity3software)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/presave-function-edit-post-title/#post-4585763)
 * The POD is created from a custom post type
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pods - Custom Content Types and Fields] Presave Function – Edit Post Title](https://wordpress.org/support/topic/presave-function-edit-post-title/)
 *  Thread Starter [unity3software](https://wordpress.org/support/users/unity3software/)
 * (@unity3software)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/presave-function-edit-post-title/#post-4585762)
 * My custom fields that I have defined via PODS. But to the question, how best 
   can I access the post_title field during ‘pre_save_pod_item’ action?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pods - Custom Content Types and Fields] Please Do Not Bump Repeated Fields Again!](https://wordpress.org/support/topic/please-do-not-bump-repeated-fields-again/)
 *  Thread Starter [unity3software](https://wordpress.org/support/users/unity3software/)
 * (@unity3software)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/please-do-not-bump-repeated-fields-again/#post-4585096)
 * Thanks Scott, my fingers are crossed. 🙂

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