webbistro
Forum Replies Created
-
Forum: Plugins
In reply to: [Enhanced Media Library] Missing category selection when adding image blockHi,
This one looks like an incompatibility with a theme or maybe a plugin. Can you please check it by deactivating other plugins and changing the theme on a dev version of your website?
Best,
— NadiaForum: Plugins
In reply to: [Enhanced Media Library] Media Categories have stopped workingHi,
Thank you for letting me know. The duplicate categories box in a single media edit page is a bug of the latest version 2.8.9. The update is coming. Not saving categories is the consequence of the same bug. Sorry for this.
The media categories element/widget is missing the “Add New Category” link.
This one is unclear. Do you mean the same image edit admin page?
Best,
— NadiaForum: Plugins
In reply to: [Enhanced Media Library] Deprecated message with WordPress 5.9Hi @milleniumwa,
Thank you for bringing this to my attention! Will be fixed with the update in a few days.
Best,
-NadiaHello @isradlt,
Thank you for providing a suspect ?? I am working on an update, will check the compatibility and if possible fix it. I’ll let you know.
Best,
-NadiaForum: Plugins
In reply to: [Multisite Language Switcher] Switcher for private pagesHi Dennis,
Thanks for the quick response! I was able to get what I need with these two hooks:
// include non-public post types add_filter ( 'msls_supported_post_types', function( $post_types ) { $post_types = array_merge( [ 'post', 'page' ], get_post_types( [ '_builtin' => false ], 'names', 'and' ) ); return $post_types; }, 10 ); // add private pages (hierarchical post types) to the drop down add_filter ( 'msls_meta_box_render_select_hierarchical', function( $args ) { $args['post_status'] = [ 'publish', 'private' ]; return $args; }, 10 );
For everyone interested: this might be better to just add a post type you need but not list all the not-built-in post types. Because sometimes there could be some unexpected and unwanted non-public post types in the list.
Like this:
// include exactly team_member post type add_filter ( 'msls_supported_post_types', function( $post_types ) { $post_types = array_merge( [ 'post', 'page', 'team_member' ], // adding a particular post type get_post_types( [ 'public' => true, '_builtin' => false ], 'names', 'and' ) ); return $post_types; }, 10 );
Best,
-NadiaForum: Plugins
In reply to: [Multisite Language Switcher] Switcher for private pagesThe same question about custom post types with
'public' => false,
. Public custom post types are being connected just perfectly.Forum: Plugins
In reply to: [Enhanced Media Library] How do the new lists work?Hi @sweden1,
Thanks a lot! I got it and found what caused the issue. Will be fixed soon.
Best,
-NadiaForum: Plugins
In reply to: [Enhanced Media Library] How do the new lists work?Please post full-page screenshots of an admin page on desktop and mobile. It’s not quite clear what exactly is wrong right now. Thank you.
p.s. I don’t think it’s hardly fixable, I just need to understand what to fix.
- This reply was modified 3 years, 2 months ago by webbistro.
Forum: Plugins
In reply to: [Enhanced Media Library] How do the new lists work?When I edit media I get a single level list of all categories before the tree. It is maybe not intended?
Of course, it is not intended. Actually, I changed the
public
option for the taxonomy if an archive page is disabled for it because a lot of people asked me to disable any indexable media archives. Whenpublic
isfalse
WP itself stops adding a taxonomy to media attributes while we need it to be available in the admin. So, I deleted ALL the taxonomy attributes and wrote a custom code that “decides” what to show instead of the WP core. I did it through a filter. It might be that you also use some other media plugin that overrides the same part and those taxonomies that should be first removed and then added with my custom code – were not actually removed. So they’re being shown twice – first by WP core, next by EML.Showing everything in a single column is not intended either. I’ll try to reproduce the issue. As I assume you didn’t touch Scrolling settings in EML’s admin so far?
Best,
-NadiaForum: Plugins
In reply to: [Enhanced Media Library] Problem with the latest versionHi Gianluca,
I just installed Co-Authors Plus and it works without a hassle with EML in my test environment.
I still need either the debug log or access to any development copy of your website with the problem reproduced on it.
Best,
-NadiaForum: Plugins
In reply to: [Enhanced Media Library] How do the new lists work?Hi @sweden1,
Any change to a category list wasn’t intended in this update. But maybe small CSS changes that allow the infinite scroll to work as before interfere with other plugins or themes. Also, maybe I didn’t pay enough attention to the mobile version.
Could you please post a screenshot of the issue? Or maybe a short video?
Thank you for your kind words about the plugin!
Best,
-NadiaForum: Plugins
In reply to: [Enhanced Media Library] Problem with the latest versionHi Gianluca,
Thank you for more information! So, when EML is active along with Co-Authors Plus then you are experiencing issues with posts, correct?
Best,
-NadiaForum: Plugins
In reply to: [Enhanced Media Library] Problem with the latest versionOf course, it’s [email protected]
Please email me tomorrow, we will try to figure out what’s wrong.Best,
-NadiaForum: Plugins
In reply to: [Enhanced Media Library] Problem with the latest versionThank you. Hmm, very strange issue. PHP version is just fine. The plugin definitely works with WP 5.8.3, I tested it on a few installations.
Can you please deactivate all other plugins temporarily to see if some of them affect the issue in any way?
Also, is this a development version of your website? Would you mind providing access to its admin?
Forum: Plugins
In reply to: [Enhanced Media Library] Problem with the latest versionHi,
It is quite unexpected behavior. What are the versions of WP and PHP? Have you tried to deactivate the plugin? Do you have any debug log on your website?
Best,
-Nadia