Title: Florian Eickhorst's Replies | WordPress.org

---

# Florian Eickhorst

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 29 total)

1 [2](https://wordpress.org/support/users/flei/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/flei/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Columns for ACF Fields] Admin columns in User list](https://wordpress.org/support/topic/admin-columns-in-user-list/)
 *  Plugin Author [Florian Eickhorst](https://wordpress.org/support/users/flei/)
 * (@flei)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/admin-columns-in-user-list/#post-18249796)
 * Hello [@webkickstart](https://wordpress.org/support/users/webkickstart/), This
   should be fixed with the latest v0.3.2. Please check and let me know if the problem
   was not solved.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Columns for ACF Fields] Sort by ACF radio button](https://wordpress.org/support/topic/sort-by-acf-radio-button/)
 *  Plugin Author [Florian Eickhorst](https://wordpress.org/support/users/flei/)
 * (@flei)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/sort-by-acf-radio-button/#post-18249540)
 * This should already work. What version of the plugin are you using?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Columns for ACF Fields] Number of posts disappears](https://wordpress.org/support/topic/number-of-posts-disappears/)
 *  Plugin Author [Florian Eickhorst](https://wordpress.org/support/users/flei/)
 * (@flei)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/number-of-posts-disappears/#post-18249532)
 * Hello [@jackoneill](https://wordpress.org/support/users/jackoneill/), thank you
   for your bug report. I have reworked how columns are rendered in the users view
   in the latest v0.3.2. With this version the number of posts is correctly shown
   in the users view for me. Please check if this helps with your problem and let
   me know if the issue persists..
 * Thanks and best regards,
   Florian
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Admin Columns for ACF Fields] Working Well](https://wordpress.org/support/topic/working-well-159/)
 *  Plugin Author [Florian Eickhorst](https://wordpress.org/support/users/flei/)
 * (@flei)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/working-well-159/#post-18105224)
 * Hello [@nmd78](https://wordpress.org/support/users/nmd78/) , thank you for your
   feedback. I am happy to hear that the plugin helps you.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Admin Columns for ACF Fields] Lightweight and hassle free!](https://wordpress.org/support/topic/lightweight-and-hassle-free/)
 *  Plugin Author [Florian Eickhorst](https://wordpress.org/support/users/flei/)
 * (@flei)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/lightweight-and-hassle-free/#post-18105208)
 * Hello [@uprisen](https://wordpress.org/support/users/uprisen/) , thank you for
   your feedback!
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Admin Columns for ACF Fields] No longer maintained?](https://wordpress.org/support/topic/no-longer-maintained-20/)
 *  Plugin Author [Florian Eickhorst](https://wordpress.org/support/users/flei/)
 * (@flei)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/no-longer-maintained-20/#post-18105199)
 * Hello [@pebweb](https://wordpress.org/support/users/pebweb/) , yes it is still
   maintained and working with the latest versions. I don’t understand what you 
   mean with “the thing no longer makes any noise”.
 * Do you have any issues with the plugins functionality? Please kindly let me know.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Columns for ACF Fields] Show all values instead of “and X more”](https://wordpress.org/support/topic/show-all-values-instead-of-and-x-more/)
 *  Plugin Author [Florian Eickhorst](https://wordpress.org/support/users/flei/)
 * (@flei)
 * [2 years ago](https://wordpress.org/support/topic/show-all-values-instead-of-and-x-more/#post-17897131)
 * Hello [@simonbequiet](https://wordpress.org/support/users/simonbequiet/) ,
 * thank you for your message.
 * There is no special filter for changing the “X remaining items” output. However
   I would just recommend using filter ‘acf/admin_columns/render_output’ for manipulating
   the column output.
 * Example: The following code will output the title of all related posts of all
   relationship fields and link to their respective admin edit page:
 *     ```wp-block-code
       add_filter('acf/admin_columns/render_output', function ($render_output, $field_properties, $original_field_value, $post_id) {    if ($field_properties['type'] == 'relationship') {        if (!empty($original_field_value)) {            $render_output = '';            foreach ($original_field_value as $relationship_post_id) {                $render_output .= '<a href="' . get_edit_post_link($relationship_post_id) . '">' . get_the_title($relationship_post_id) . '</a><br>';            }            return $render_output;        }    }    return $render_output;}, 10, 4);
       ```
   
 * IMPORTANT: Please note that there is currently a mistake in the documentation
   stating the wrong filter name. I have updated the documentation but it has not
   been published by the registry yet. **The correct filter name is ‘acf/admin_columns/
   render_output’**, NOT ‘acf/admin_columns/column/render_output’!
 * Let me know if this helps you or if you keep having difficulties.
 * Best regards,
 * Florian
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Columns for ACF Fields] Fiter not working](https://wordpress.org/support/topic/fiter-not-working/)
 *  Plugin Author [Florian Eickhorst](https://wordpress.org/support/users/flei/)
 * (@flei)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/fiter-not-working/#post-17880672)
 * Hello [@lsterling03](https://wordpress.org/support/users/lsterling03/) ,
 * thank you for your feedback.
 * Unfortunately there was a mistake in the readme stating a wrong filter name. 
   The correct filter name is “acf/admin_columns/render_output”. I have updated 
   the readme today (not visible yet, probably published by the repository soon).
 * Please let me know if it works with “acf/admin_columns/render_output”.
 * Best regards,
 * Florian
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Columns for ACF Fields] Fatal Error When Visiting All Pages List in Backend](https://wordpress.org/support/topic/fatal-error-when-visiting-all-pages-list-in-backend/)
 *  Plugin Author [Florian Eickhorst](https://wordpress.org/support/users/flei/)
 * (@flei)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/fatal-error-when-visiting-all-pages-list-in-backend/#post-17880246)
 * Hello [@daneloctober](https://wordpress.org/support/users/daneloctober/) ,
 * thank you for your feedback. That error is thrown inside of ACF itself and can
   have multiple causes. Does it still occur when you disable my plugin? What exact
   version of ACF Pro are you using? Which fields and field columns have you configured?
 * Best regards,
   Florian
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Admin Columns for ACF Fields] Amazing! Works perfectly.](https://wordpress.org/support/topic/amazing-works-perfectly-9/)
 *  Plugin Author [Florian Eickhorst](https://wordpress.org/support/users/flei/)
 * (@flei)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/amazing-works-perfectly-9/#post-17730130)
 * Thank you for your feedback!
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Admin Columns for ACF Fields] Perfect, thanxs!](https://wordpress.org/support/topic/perfect-thanxs/)
 *  Plugin Author [Florian Eickhorst](https://wordpress.org/support/users/flei/)
 * (@flei)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/perfect-thanxs/#post-17730129)
 * Thank you for your feedback!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Columns for ACF Fields] in users page](https://wordpress.org/support/topic/in-users-page/)
 *  Plugin Author [Florian Eickhorst](https://wordpress.org/support/users/flei/)
 * (@flei)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/in-users-page/#post-17730127)
 * Hello [@sanbor](https://wordpress.org/support/users/sanbor/) ,
 * thank you for your feedback! Can you explain in more detail, where you tried 
   to show what kind of column for what kind of content?
 * Thanks and best regards,
 * Florian
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Columns for ACF Fields] Suggest to Improve Plugin](https://wordpress.org/support/topic/suggest-to-improve-plugin/)
 *  Plugin Author [Florian Eickhorst](https://wordpress.org/support/users/flei/)
 * (@flei)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/suggest-to-improve-plugin/#post-17730126)
 * Hi [@tnchuntic](https://wordpress.org/support/users/tnchuntic/) ,
 * thank you for your suggestions. I will look into them more closely for one of
   the next releases.
 * Best regards,
 * Florian
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Columns for ACF Fields] Fatal Error When Visiting All Pages List in Backend](https://wordpress.org/support/topic/fatal-error-when-visiting-all-pages-list-in-backend/)
 *  Plugin Author [Florian Eickhorst](https://wordpress.org/support/users/flei/)
 * (@flei)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/fatal-error-when-visiting-all-pages-list-in-backend/#post-17730122)
 * Hello [@daneloctober](https://wordpress.org/support/users/daneloctober/) ,
 * thank you for your feedback!
 * That particular line of code is rather unsuspicious as it should only assign 
   a variable value. Memory exhaustion might be caused within a larger context in
   your system…
 * Can you give me more details on when and where this error happens on your system?
   Which version of the plugin are you using?
 * Thanks and best regards,
 * Florian
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Admin Columns for ACF Fields] Great plugin with a Fatal Error](https://wordpress.org/support/topic/great-plugin-with-a-fatal-error/)
 *  Plugin Author [Florian Eickhorst](https://wordpress.org/support/users/flei/)
 * (@flei)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/great-plugin-with-a-fatal-error/#post-17191601)
 * [@jugibur](https://wordpress.org/support/users/jugibur/) please check if this
   error still occurs with the latest 0.2.1 release. Thank you.

Viewing 15 replies - 1 through 15 (of 29 total)

1 [2](https://wordpress.org/support/users/flei/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/flei/replies/page/2/?output_format=md)