Tobias Schutter
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin Columns] Make compatible with WordPress subfolder installWe are working on a solution right now.
Forum: Plugins
In reply to: [Column Shortcodes] Merging stylesheet with theme stylesheetIt’s licenced under GPL, like all other plugins in the WP repository, you will not violate it’s copyright by doing that 🙂
You could try the Minify plugin to minimize and minify the number of JS/CSS files. No coding knowledge needed.
Forum: Plugins
In reply to: [Admin Columns] Message to DeveloperYou got mail!
Best, Tobias.
Forum: Plugins
In reply to: [Admin Columns] Deprecated functionsI did a second check, and the problem with the new filter is that most other plugins still use the old ones, including ones like woocommerce, yoast seo, ACF etc. I have to see how I can solve this without breaking column setups. I agree that using deprecated functions is no good, but I have to consider compatibility with these plugins as they are widely used.
Even though the other is deprecated it should still work by using the new filter:
function codepress_add_custom_column($c) { $c['test'] = 'Test Label'; return $c; } add_filter( 'manage_post_posts_columns', 'codepress_add_custom_column' );Which one of your plugins have this issue?
I have a bleeding edge version 2.0 available on github: https://github.com/codepress/codepress-admin-columns
Forum: Plugins
In reply to: [Admin Columns] Incompatibility with Plugin: WyPiekaczExcellent, thanks for the help!
Forum: Plugins
In reply to: [Admin Columns] Incompatibility with Plugin: WyPiekaczA pretty strange bug, it seems that the set_transient is not working properly or contains a false value which should not exist in the first place. I rewritten the way the welcome screen checks if it has been shown. This should prevent anyone getting stuck in the welcome screen no matter how they got there.
I pushed a commit if you would like to do I final check.
Forum: Plugins
In reply to: [Admin Columns] Incompatibility with Plugin: WyPiekaczThanks for taking the time to squash this bug.
I enabled some debug info in this latest build: https://github.com/codepress/codepress-admin-columns/archive/master.zip
Could you give it a try and send me a screenshot of it?
Forum: Plugins
In reply to: [Admin Columns] Incompatibility with Plugin: WyPiekaczI made a sandbox with NGINX + Multi Site + W3 Total Cache. But i still cant reproduce the issue.
When you see the the welcome page;
Do you see?
“
Important
Database Changes
Make sure you backup your database and then click Upgrade Database
”And does the URL look like?
1. wp-admin/admin.php?page=codepress-admin-columns
2. wp-admin/admin.php?page=codepress-admin-columns&infoThanks for the help.
p.s.: Installing Varnish would take me a bit too much time 😉 But it could also be it’s caching, but for now I assume it is not.
Forum: Plugins
In reply to: [Admin Columns] Incompatibility with Plugin: WyPiekaczThe welcome should only trigger once. After is has been displayed it will set a transient cookie. It seems to get deleted, I will have a look.
For now you could set it in functions.php to overwrite it as I look for a fix:
set_transient( 'cpac_shown_welcome', true );Forum: Plugins
In reply to: [Admin Columns] problem saving configuration & editsWe are definitely going to keep supporting it! We have been working on a completely refactored release, which solves a lot of bugs and bring a completely new UI and added features such as export/import of settings.
I think it will solve your issue aswell. I currently have this 2.0 release in beta, so if you like – give it a try: http://www.codepresshq.com/beta-testing-admin-columns-v2-0/
Feedback on this beta is very welcome.
Forum: Plugins
In reply to: [Admin Columns] Sorting problem with about 10000 recordsThat are a lot of posts indeed.
Could you tell me which column you were trying to sort when you ran out of memory? Some sorting queries are different from others, so if you could help me narrow it down, I can try an optimise them.
Forum: Plugins
In reply to: [Admin Columns] Add-on to sort columnsThe sort addon support the sorting of the Word count columns, I tested it and it worked as it should. So I wasn’t able to reproduce your issue.
Try deactivating other plugins to exclude any conflicts. If there happen to be a conflict please let me know which plugin.
Forum: Plugins
In reply to: [Admin Columns] Date custom fieldsVersion 2.0 is coming up soon which will let you set your own date format.
Forum: Plugins
In reply to: [Admin Columns] Only displaying one line of custom fields valuesPlease turn on WP_DEBUG in your config.php and send me a screenshot of your values.
Forum: Plugins
In reply to: [Admin Columns] Incompatibility with Plugin: WyPiekaczIt’s something on our end. I have a fix ready for this in v2.0
This version is currently in beta. If you could give a try I would appreciate it, you can download it here: http://www.codepresshq.com/beta-testing-admin-columns-v2-0/