wickedplugins
Forum Replies Created
-
Hi @darknights,
I’m going to go ahead and mark this as resolved as I believe the issue you’re describing may have actually been fixed in a recent version.
If that’s not the case and you’re still having trouble, feel free to re-open the issue.
Hi @qeyduey,
Sorry for the confusion. We’re referring to the navigation menu that appears on the left side of the screen (right side if use a right-to-left language). The “Toggle Folders” link should be the second-to-last link in the menu immediately before the “Collapse menu” link. Note that if you have the side menu collapsed, you will only see icons in which case the folder icon is the one that can be used to toggle the folders.
We’ll try to think of a way to make this more clear.
Let me know if you still have trouble.
Hi @darknights,
I apologize for not responding to this sooner; for some reason I never received an email notification for this and didn’t see it until just now when I was checking the page.
Can you let me know what plugin you’re using for customizing the crop of the images so I can test it out and see if I can reproduce the problem?
Also, just to confirm, you’re using the latest version of Wicked Folders, correct?
Hi @xenoscrewz,
I’m afraid dynamic folders are read-only and can’t be organized like other folders due to their dynamic nature.
That said, you can use the
wicked_folders_get_foldersfilter (located in `class-wicked-folders.php’) to alter the folder hierarchy. So, depending on what you’re trying to accomplish, you may be able to use that filter to organize the folders the way you want.Hope this helps!
Thanks so much for the positive review @texasbiz! So glad to hear that the plugin is useful for you.
Got it, thanks for clarifying. Unfortunately there just isn’t enough space on the page for all the columns which causes the heading to wrap oddly. You can either hide it using the screen options if you don’t need it or, perhaps, hide some other columns.
Alternatively, you may want to check out the Admin Columns plugin. You can also use that plugin to customize which columns are displayed which may help clean up the view.
Hope this helps!
Hi @extechdesign,
Are you referring to the ‘Move to Folder’ column missing from the Products table?
Or the way the ‘Product Folders’ column header is displaying? Or something else?If the former, can you click on ‘Screen Options’ in the upper right and confirm that the ‘Move to Folder’ box is checked? If a checkbox for that column is missing, can you make sure that both Wicked Folders and WooCommerce are updated to the latest versions? If they are and the column still doesn’t appear, there may be a conflict with another plugin. In that case, I’d recommend temporarily deactivating all other plugins to see if that resolves the issue. If so, re-activate the other plugins one-by-one to determine which one is causing a conflict.
If you were referring to the way the ‘Product Folders’ column header is displaying, there just isn’t enough space for it on the page. You can hide that column by clicking ‘Screen Options’ and un-selecting the box for ‘Product Folders’.
Let us know if the above helps and if you still have trouble.
Thanks so much for the positive review @giannit!
Hi @vladdie1979,
Thanks again for reporting this. We’ve fixed this in version 2.13.3.
I’m going to mark this issue as resolved but, if you still have trouble or need help with anything else, please don’t hesitate to open another ticket.
Hi @vladdie1979,
Thanks for pointing this out! You’re right, this is a bug.
We’ll look into this today and I’ll follow up as soon as we have it resolved!
Hi @seanhelmes,
I’m going to go ahead and mark this issue as resolved but, if you still need help, please don’t hesitate to let us know!
Hi @seanhelmes,
We moved the folder pane toggle to the left sidebar navigation in a recent version of the plugin. You should see a “Folders” link at the very bottom that you can use to toggle the folder pane.
Thanks for the positive review @georgesbecherel!
Hi @mrblond,
Sorry for the confusion. In the original/old version of the plugin, a separate “Folders” page was generated for each post type that had folders enabled (rather than being integrated directly onto the built-in WordPress list view pages like it is now). The checkbox you’re referring to is on those pages. If you want, you can enable those pages by going to Settings > Wicked Folders and checking the box next to “Enable legacy folder pages”.
In the current version of the plugin (which has the folders integrated into the admin list views of things like pages and posts), you can view unassigned items by going to the Dynamic Folders > Unassigned Items folder.
I hope this helps! Please let me know if you still have questions.
Great, glad to hear that worked! That’s for all your help troubleshooting the issue.
BTW, here is a slightly different version of the previous code snippet that prevents an error from occurring if the plugin is deactivated:
if ( class_exists( 'Wicked_Folders_Admin' ) ) { $wicked_folders_admin = Wicked_Folders_Admin::get_instance(); add_action( 'manage_pages_custom_column', array( $wicked_folders_admin, 'page_custom_column_content' ), 10, 2 ); }