Tobias Schutter
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin Columns] Date formats in column – override possible?Get your beta here: http://www.codepress.nl/codepress-admin-columns-1.4.6.5.zip.
Let me know if it works!
Forum: Plugins
In reply to: [Admin Columns] allow filter for custom field on page viewHi Nic,
Currently dropdown filters are not supported, besides taxonomies (see FAQ to enable this ).
I have it on my list of features to add more filter options in the future.
For now you could also sort your custom field column, which will then group all fields with the same name ( on alphabet order ). Not exactly the same as filtering but could make it easier for you to find the correct post.
Tobias
Forum: Plugins
In reply to: [Admin Columns] Date formats in column – override possible?Hi Mark,
I am also a fan of ACF, it is a really nice plugin and it works well with Admin Columns.
I have noticed that ACF has choosen a default date value that is not complaint with “ATOM” – ‘yy-mm-dd’ (Same as RFC 3339/ISO 8601), which is also the format WordPress uses internally.
To give better support for a greater variety of dates I will add a fix in the next release of Admin Columns ( v1.4.6.5 ). This fix will parse all custom dates with strtotime(). This will make it work with Advanced Custom Fields even better and will prevent me from adding an additional field to define the source date.
If you want a beta just let me know and I will send you a copy.
Thanks for the feedback.
Forum: Plugins
In reply to: [Admin Columns] Feature request: control filtersGood idea. At this moment only taxonomy filtering is supported. Make sure to add this to your functions.php:
add_filter( 'cpac-remove-filtering-columns', '__return_false' );I already have plans to add more advanced filtering for other columns in a future release, I just need the time to implement them 🙂
Forum: Plugins
In reply to: [Admin Columns] Yoast SEO columns – againHmm.. not much I can do at this point. It would be very helpfull if you could try and monitor what steps you took before the error occurred.
Forum: Plugins
In reply to: [Admin Columns] Some custom post types are not showingI think you have a small typo in your labels… so your post type is called ‘Image’ instead of ‘Press’. Try replacing:
'singular_name' => _x('Image', 'press'),with
'singular_name' => _x('Press', 'press'),Thanks for spotting that. I will include a fix in next release.
Forum: Plugins
In reply to: [Ultimate Metabox Tabs] Incompatibility with Codepress Admin ColumnsYou are right. I forgot to return the $classes from that admin_class filter. I will fix it in the next release. Thanks for spotting that!
I got your screenshot. Your memory limit was reached.
I optimised the count query, which was far from optimal. This should solve reaching the memory limit and saves some precious resources on your server 🙂
I will send you a beta on the mail.
Forum: Plugins
In reply to: [Admin Columns] Support for wp-types post relationshipsTo enable Hidden custom field you only need to add this line of code to your themes functions.php:
add_filter('cpac_use_hidden_custom_fields', '__return_true'); // enables the use hidden custom fieldsMore cool stuff in the FAQ section of the plugin.
Forum: Plugins
In reply to: [Admin Columns] Some custom post types are not showingMaybe you forgot to place your register_post_type into an action hook?
Example:
function my_posttypes() { $preassargs = array(<bunch of arguments>); register_post_type( 'press' , $preassargs ); } add_action( 'init', 'my_posttypes' );Forum: Plugins
In reply to: [Admin Columns] Display post contentYou can use the excerpt column to display a part of the post’s content.
@jaydokie You need a different plugin. If you want to split content into multiple columns I would recommend using this: http://wordpress.org/extend/plugins/column-shortcodes/.
Forum: Plugins
In reply to: [Admin Columns] Yoast SEO columns – againI wasn’t able to reproduce this. I recommend resetting the codepress admin plugin settings and re-save it. It could be that Yoast SEO changed the way the columns are loaded.
I found what caused it. Apparently CCTM plugin changes the global post_type somewhere, which made it an array.
I will know check for the right type of this variable before I use it, with a fallback in case it fails. Without getting in to much depth.. it is fixed now 🙂
I already update your plugin on your development environment, and will soon release a patch for it in the repository, will be version 1.4.6.5 and up probably.
Thanks for letting me test on your site and the bug report.
If you could give me temporary access that would be great. I will have a look.