Dennis G
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] 0.9.5 Minify (automatic) broken@import
was set to Process already.
Manual mode would cause all kind of havoc because figuring out the order of all the scripts / CSS is a nightmare as well as adding all these scripts to the list…Again: It worked in the previous version prior to 2016-09-25, so the update did break. Judging from the support entries on here many people seem to have problems with the 0.9.5 update.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Backup failedVery interesting.
The backup job (backup everything: db, file etc.) is set to run weekly. There was no manual interaction just the e-mail that told me that the job failed.
Caching plugin: yes W3TC. Also running behind Cloudflare, but that shouldn’t impact the internal process I reckon.
Forum: Plugins
In reply to: [Media Library Assistant] Incompatibility with WP Media FolderI have tried out the MLA Development Version dated 20160313 on my DEV site and everything seems to be working – even the Assistant screen.
I completely agree with your assertion that folders are irrelevant for the Media/Assistant view as users are trying to achieve something different here than work in folders.
For me this issues seems to be resolved at first glance.
Forum: Plugins
In reply to: [Media Library Assistant] Incompatibility with WP Media FolderDavid thanks for the complete writeup. I however still want to use both methods for sifting through images: folders as well as metadata. I believe in both having their value.
The authors of WP Media Folder were so nice to provide the solution which actually involves modifying Media Library Assistant. If you are into diff files (mla-media-modal-scripts.diff):
751a752,753 > > var mlaDrop = wp.media.view.AttachmentsBrowser; 777c779 < wp.media.view.AttachmentsBrowser.__super__.createToolbar.apply( this, arguments ); --- > mlaDrop.prototype.createToolbar.apply( this, arguments );
or in other words in line 753 of mla-media-modal-scripts.js (don’t forget to update the minified file as well) add the line
var mlaDrop = wp.media.view.AttachmentsBrowser;
. Further down replacewp.media.view.AttachmentsBrowser.__super__.createToolbar.apply( this, arguments );
withmlaDrop.prototype.createToolbar.apply( this, arguments );
This way both plugins work together flawlessly. The design is a bit off, but I’ll deal with that myself. Would be great of you to integrate this quick fix in your next update.
Forum: Plugins
In reply to: [Media Library Assistant] Incompatibility with WP Media FolderGood answer and I was suspecting as much. Sorry for not providing a direct link to make your search easier.
I do think a combination of both would be great. In my case I do have my photos organized in folders per country. This way I can quickly select to view only photos of the one country. But if I would want to see all “flowers” of all country the folder approach falls short (the old metadata vs. folder debate), hence I would love to able to do both.
Again thanks for replying, maybe I will start looking into it myself and if I can find a solution get back here.