wickedplugins
Forum Replies Created
-
Hi @imincognito,
Thanks for the details. We’ll look into using a class name per their suggestion and include a fix for this in the next release. Thanks for pointing out the issue.
Hi @lebucheron,
Normally you should be able to enable folders for the custom post type on the Settings > Wicked Folders page. Are you not seeing the custom post type listed there?
Hi @miket234,
I think the
wicked_folders_post_typesfilter might be able to accomplish what you want:add_filter( 'wicked_folders_post_types', function( $post_types ){ $post_types[] = 'page'; return $post_types; } );Forum: Reviews
In reply to: [Wicked Block Builder] Powerful potential, excellent supportThank you for the review!
Forum: Plugins
In reply to: [Yoast Duplicate Post] Post-clone NavigationHi @imincognito,
Do you see a “folder” parameter in the URL? If so, try clicking on Pages in the admin menu. That should remove the folder parameter from the URL so that when you clone a page, it will remain in the same folder.
Hi Barry (@datastream),
You should be able to fix that by using the
<a href="https://developer.ww.wp.xz.cn/reference/hooks/admin_body_class/" rel="noopener" target="_blank">admin_body_class</a>filter and removing the “admin-bar” class from the body tag.Let me know if you still have trouble.
Hi @imincognito,
I’ll look into #1 and get back to you.
Regarding #2, can you clarify what you mean?
Hey @adenmantmea,
Thanks for reporting this. We’ve fixed this and it will be resolved in the next release.
Hey @imincognito,
I completely agree with you and if you know of a better way, let me know.
BTW, something I do when this happens is, instead of disabling all plugins, I’ll disable half and see if the issue goes away. If it doesn’t, I’ll then disable half of the remaining active plugins and so on until I find the conflicting plugin. Still a pain but it does help speed up the process.
Hey @imincognito,
Sorry to hear you’re having trouble. This sounds like it could potentially be due to a conflict with another plugin. I’d recommend testing for a plugin conflict by temporarily deactivating all other plugins to see if the issue goes away (i.e. the folder toggle starts working). If it does, re-activate the plugins one-at-a-time until the issue returns to isolate which plugin is causing the conflict.
If it turns out to be a conflict, let us know which plugin and I can look into it further to see if there’s anything we can do on our end to work-around the issue.
Hi @lianix,
Thanks for your message. We’ve added support for snippets and it should work automatically after the next plugin update.
In the meantime, you can fix this issue by adding the following code to the end of your theme’s functions.php file:
add_action( 'init', function(){ if ( class_exists( 'Wicked_Folders_Admin' ) ) { $wf_admin = Wicked_Folders_Admin::get_instance(); add_filter( 'manage_edit-wbcr-snippets_columns', array( $wf_admin, 'manage_posts_columns' ), 20 ); } } );This should fix the problem for you but, if you still have trouble, please let us know.
Hi @studioviv,
Thanks for reporting this issue. I was able to reproduce the problem and, from what I can tell, it appears the issue may be a combination of WPML’s code to duplicate the attachment to the other languages running before our code that assigns the attachment to a folder along with WPML possibly not carrying over the assigned terms.
We’ve made an update to the plugin that should solve this and will include it in the next release. In the meantime, please feel free to contact us directly and we can provide an updated copy of the plugin that you can use until the next release is available.
Hi @ginesta,
Thanks for reporting this problem. Can you please try replacing line 260 with the following line:
if ( ( isset( $_GET['page'] ) && 'wicked_folders_settings' == $_GET['page'] ) || 'wf_collection_policy' == $typenow || ( false !== $screen && isset( $screen->base ) && isset( $screen->action ) && 'media' == $screen->base && 'add' == $screen->action ) ) {I believe that will fix the problem for you but, if not, please let me know. We’ll include this fix in the next plugin update.
Thanks for the review @abbireddy1985!
No problem! Glad to hear it’s fixed!