Florian Eickhorst
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin Columns for ACF Fields] Admin columns in User listHello @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
In reply to: [Admin Columns for ACF Fields] Sort by ACF radio buttonThis should already work. What version of the plugin are you using?
Forum: Plugins
In reply to: [Admin Columns for ACF Fields] Number of posts disappearsHello @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,
FlorianForum: Reviews
In reply to: [Admin Columns for ACF Fields] Working WellHello @nmd78 , thank you for your feedback. I am happy to hear that the plugin helps you.
Forum: Reviews
In reply to: [Admin Columns for ACF Fields] Lightweight and hassle free!Hello @uprisen , thank you for your feedback!
Forum: Reviews
In reply to: [Admin Columns for ACF Fields] No longer maintained?Hello @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
In reply to: [Admin Columns for ACF Fields] Show all values instead of “and X more”Hello @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:
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
In reply to: [Admin Columns for ACF Fields] Fiter not workingHello @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
Hello @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,
FlorianForum: Reviews
In reply to: [Admin Columns for ACF Fields] Amazing! Works perfectly.Thank you for your feedback!
Forum: Reviews
In reply to: [Admin Columns for ACF Fields] Perfect, thanxs!Thank you for your feedback!
Forum: Plugins
In reply to: [Admin Columns for ACF Fields] in users pageHello @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
In reply to: [Admin Columns for ACF Fields] Suggest to Improve PluginHi @tnchuntic ,
thank you for your suggestions. I will look into them more closely for one of the next releases.
Best regards,
Florian
Hello @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
In reply to: [Admin Columns for ACF Fields] Great plugin with a Fatal Error@jugibur please check if this error still occurs with the latest 0.2.1 release. Thank you.