Tobias Schutter
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin Columns] Blank sceenCould you try running this 1.4.9beta version?
Forum: Plugins
In reply to: [Admin Columns] All Dates show up as December 12, 2012 in the back endIn what format are you storing you dates?
The plugin only support dates that can be parsed by strtotime.
For example:
mm/dd/yyyy, dd-mm-yyyy or YYYY-MM-DD etc.Forum: Plugins
In reply to: [Admin Columns] Fatal error with WP3.5I am making some changes at the moment. Would you mind testing this 1.4.9beta version for me?
Forum: Plugins
In reply to: [Admin Columns] Blank sceenCould you turn on error reporting and sent me the error?
In your wp-config.php make sure to set the following to display errors:
define('WP_DEBUG', true);Yeah about this issue here. The problem is I want to support as many columns from thirdparty plugins as possible. That’s why I needed to use:
do_action('load-edit.php')Unfortunately that means that occasionally you get a bug like this.
But I have a quick fix for this. You can just remove the bbPress posttypes from admin columns. I will apply this fix as well in a next release. For now add this to your functions.php:
function remove_bbpress_from_cpac_post_types( $post_types ) { if ( class_exists('bbPress') ) { unset( $post_types['topic'] ); unset( $post_types['reply'] ); unset( $post_types['forum'] ); } return $post_types; } add_filter( 'cpac-get-post-types', 'remove_bbpress_from_cpac_post_types' );Your welcome 🙂
Forum: Plugins
In reply to: [Admin Columns] Show columns before those not recognized by CAC?It depends on how the plugin is adding it’s columns. Unfortunately Media Tags is adding it’s columns in a way that my plugin does not support. I will look into this to see if I can find a way to add support for it.
Forum: Reviews
In reply to: [Admin Columns] Doesn't see columns from WordPress SEO pluginHi Edward,
I was able to reproduce the bug you found. Apparently the wordpress SEO plugin was updated. I have a patch implemented for this in the updated release.
I am sorry you were disappointed. I hope you will reconsider re-rating this plugin with this new release 1.4.7.
Tobias.
Forum: Plugins
In reply to: [Admin Columns] Yoast SEO columns – againI finally found what caused it 🙂
I have a fix ready for this in the next release ( 1.4.7 ) which also adds support for the upcoming WordPress 3.5 release.
Thanks for all the feedback!
Forum: Plugins
In reply to: [Admin Columns] Conflict with s2Member subscription mgt plugin?I will post my email reply here for reference.
I have installed S2 Members with Admin Columns, but I could not reproduce your error. I did notice that Admin Columns will not recognise the added columns from S2, but not errors preventing me from using the other User columns.
Try disabling all plugins except Admin Columns, then activate them one at the time to see if there is a possible plugin conflict.
Which version of Magic Fields are you using?
Forum: Plugins
In reply to: [Admin Columns] Export settingsI am currently working on this 🙂
I can recommend using WP Migrate DB when transferring between servers. It should also be able to transfer the plugin settings.
At this moment the images are not yet responsive, so the width and heights are fixed. You can however change the fixed widht and height by adding the following to your theme’s functions.php:
<?php // edit here: fill in your thumbnail height and width $my_height = 30; $my_width = 30; // stop editing add_image_size( 'admin-columns', $my_width, $my_height, true ); add_filter('cpac_thumbnail_size', function() { return 'admin-columns'; }); ?>You can find more information about this in the FAQ section of the plugin.
Forum: Plugins
In reply to: [Admin Columns] Advanced Custom Fields Images do not showHi,
I have tested it and it should work well with Advanced Custom Fields.
Try the following:
So for example if you have defined a custom field with ACF with it’s field name set to “logo” and Field Type set to “image”.
Now got to Admin Columns Settings:
1. Add a custom field
2. Label: Image, Custom Field: logo, Field Type: Media Library Icon
3. Select the checkbox ( next to the label )
4. Click “Save Changes”Now the logo should be displayed in your column.
Forum: Plugins
In reply to: [Admin Columns] Date formats in column – override possible?The outputted date format is determined by your general settings. Just go to Settings > General > Date Format and you can change it there.
Nice to read such an enthusiastic response!