Aesqe
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: File Gallery]@gunness: that file is part of the plugin and will always be there 🙂
If you need to override its settings use
!importantdeclarations in your CSS rules.If you don’t need it at all, you can use the following code to disable loading of “columns.css”:
function remove_file_gallery_columns_css() { wp_dequeue_style('file_gallery_columns'); } add_action( 'wp_print_styles', 'remove_file_gallery_columns_css' );I’ll probably add disabling of columns.css as an option to the plugin in near future.
@carbeck: sorry about that, I added a new filter and accidentally reversed the order of filtered and supplied variables.
Fixed in v1.7.3, please update.
Thanks for reporting it!
I’ve been able to make File Gallery work with multiple editors without too much trouble, but I haven’t included the support in v1.7.2 yet. It’ll be included in v1.7.3, I’d just like to test it thoroughly in all browsers.
File Gallery v1.7.2 is out and this issue should be fixed. Sorry for the long wait, but it was Christmas and all 😉
@brc60: I’ll include support for multiple editors in v1.7.2, it should be out by Christmas. Thanks for the tip 🙂
@li-an: upload field will come, but it’s not as easy to implement as copy/pasting the code 🙂
I’ll see about making the upload button more prominent.
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] Multi User@gunness: I’ll add better Multisite support soon, haven’t had time to test it properly yet.
This is a bug, yep 😀
File Gallery is checking “is_single()” instead of “is_singular()”.
I’ll release another bugfix release (v1.7.2) tomorrow.
@2grafik: when you say “But now the whole plugin disappeared”, do you mean it’s not visible on the plugins page, it’s not on the available plugins list? If it is on the list, try deactivating it and then activating it again.
I can’t think of any reason why File Gallery would behave that way 😐
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] Generating tag pages on the fly broken?@carbeck: you can change media tags taxonomy name in settings -> permalinks under “Media tags Taxonomy name”
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] Generating tag pages on the fly broken?File Gallery v1.7.1 is out and fixes wp_rewrite->flush_rules() firing too early on ‘init’ hook, if any of the permalinks structures were changed.
About the actual problem: if you have Media Tags plugin installed, it uses ‘media-tags’ as taxonomy name, not ‘media_tag’ which is File Gallery default. I’ve tried my best to make my plugin compatible with Media Tags, and here is how it works:
– if you have only File Gallery installed, your taxonomy name will by default be ‘media_tag’
– if you install Media Tags, File Gallery will detect that and update taxonomy slug in the database to ‘media-tags’, as Media Tags plugin has that value hardcoded
This *should* work without any hiccups. Except for the bug in 1.7, which is now fixed in 1.7.1 – sorry about that 😐
@carbeck: the only thing you need to change (after updating File Gallery to v1.7.1) is your template filename – if you have Media Tags installed, your media tags taxonomy archive filename should be
taxonomy-media-tags.php.Now, what concerns me more is your first sentence:
…suddenly all my media tags were gone
.
Did you have Media Tags installed the whole time, or did you install it only after all your media tags disappeared after updating File Gallery?
Thank you so much for reporting this issue, I hope my post clarifies some things.
Please let me know if you’ve managed to make it work 🙂
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] Generating tag pages on the fly broken?I’ll upload v1.7.1 with a fix tomorrow and explain a bit more about the problem. Thanks for letting me know.
@bedex78: cropping already is on my near-future to-do list, I’ll take a look at qTranslate 🙂
@bedex78: thanks for the info. There was a cut/paste mishap which I’ve fixed in RC14 – I’ve tested it and it works fine now 🙂
Download File Gallery v1.7-RC14 from here: http://wordpress.org/extend/plugins/file-gallery/download/
@bedex78: you also need to override the path to your template using the ‘file_gallery_default_template_abspath’ filter.
Filtering the ‘file_gallery_default_template_url’ is for the CSS files, ‘file_gallery_default_template_abspath’ is for the PHP files, as they need to be read by File Gallery.