Tobias Schutter
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin Columns] Updating from version 3.1.1 to 3.1.2 results in fatal errorHi,
I have fixed this asap. Just remove the plugin and re-install it.
Tobias
Forum: Plugins
In reply to: [JM Twitter Cards] Active Tab – LocalStorage issueI have the exact same issue.
The selector
$('.nav-tab-wrapper a')insettings.jsis too broad. The plugin should only load the JS file on its admin pages. Or it should make the selector specific for the JM tabs.- This reply was modified 8 years, 6 months ago by Tobias Schutter.
Forum: Plugins
In reply to: [Column Shortcodes] Cookies in Column Shortcodes pluginThe plugin places a cookie to store the padding preferences in the popup menu. There a no cookies used for tracking any data on users.
Forum: Plugins
In reply to: [Column Shortcodes] Great Plugin, Erm Why No two Fourth?That would be the same as one half 😉 That column is already available.
Forum: Plugins
In reply to: [Admin Columns] Links wrappingThis will be resolved in the next release v2.5.6.x.
Forum: Plugins
In reply to: [Admin Columns] All settings lostWe are working on it right now. We have already updated 2.5.6 with a hotfix. Official fix will come asap.
Forum: Plugins
In reply to: [Admin Columns] Row/post actionsThe actions rows are being added to the first row it finds. But we forgot to build in a check in the case that the primary column still exists, but in a different place. Like you have in your setup.
We’ll make sure to fix this in the next patch by checking for the primary column first.
If you like to fix it yourself you can replace the following code in codepress-admin-columns.php (for v2.5.5 only):
public function set_primary_column( $default ) { if ( $storage_model = $this->get_current_storage_model() ) { $default = key( $storage_model->get_columns() ); } return $default; }with
public function set_primary_column( $default ) { if ( $storage_model = $this->get_current_storage_model() ) { if ( ! $storage_model->get_column_by_name( $default ) ) { $default = key( $storage_model->get_columns() ); } } return $default; }That should do the trick!
Forum: Plugins
In reply to: [Admin Columns] Yoast columns still not visibleI tested it on Pages and Posts with the latest Yoast SEO version (3.1.2), but couldn’t find any issues.
Please try to disable all plugins (except Yoast SEO) and see if the problem still exist. If it still does try switching to a default theme (like twentyfifteen) and check again.
This wil let us know if the issue is being caused by any other plugin or your theme.
Forum: Plugins
In reply to: [Admin Columns] Works for posts, but not for pages overviewWe haven’t had any issue with Pages. Try to disable all plugins and see if the problem still exist. If it still does try switching to a default theme (like twentyfifteen) and check again.
This wil let us know if the issue is being caused by any other plugin or your theme.
Forum: Plugins
In reply to: [Admin Columns] Sorting according to the added columnYou can re-order the columns in the free version, but sorting is a pro feature.
Forum: Plugins
In reply to: [Admin Columns] Quick EditThis problem will be fixed shortly. thank you for reporting.
Forum: Plugins
In reply to: [Admin Columns] Yoast columns still not visibleTry to add a new column, scroll down to “Column by Plugins”. It should be listed there.
Or maybe it’s hidden, then try enabling them on the listing page, by going to the “screen options” in the top right corner and selecting them.
Forum: Plugins
In reply to: [Admin Columns] WPML custom language, all plus icons not showingThis will be fixed in the next release 2.5.4. Thank you for reporting the issue.
Forum: Plugins
In reply to: [Admin Columns] Invalid Response message when trying to add a column to UsersNot sure, could you try to disable all plugins and see if the problem still exist. If it still does try switching to a default theme (like twentyfifteen) and check again.
This wil let us know if the issue is being caused by any other plugin or your theme.
Forum: Plugins
In reply to: [Admin Columns] Missing columns?Could you link to that particular plugin?
I have tried this one, but couldn’t find any issues with it. The “protected” column (lock icon) should be available from the column selection menu under the “Column by Plugins” group.