Aesqe
Forum Replies Created
-
@all: please test with File Gallery v1.7.5, the problem should be fixed now.
http://wordpress.org/support/topic/please-test-file-gallery-175
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] Parse error@all: please test with File Gallery v1.7.5, the problem should be fixed now.
http://wordpress.org/support/topic/please-test-file-gallery-175
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] Pagination problem?@rickone, @blogdropper, @alfredm:
I’m sorry, but I still haven’t been able to reproduce the issue… 😐
If any one of you would be willing to help me out on this one by creating an admin or editor account on the problematic website, so I can test things out, I’d really appreciate it.
Please contact me via email if you can help (my username at skyphe.org).
Thank you!
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] Custom Media fields in Template?@jynk: when a plugin is updated, its whole folder gets deleted and all files are replaced with new ones, there’s no way around it.
where do you place your custom templates? File Gallery looks at the following two locations by default:
1) your-theme-directory/file-gallery-templates
2) wp-content/file-gallery-templatesForum: Plugins
In reply to: [Plugin: File Gallery] Compatibility Issue with Advanced Custom Fields Plugin@serdominik: I’ve fixed the problem, thanks for the info 🙂
I’ll release an updated version of the plugin tomorrow.
Forum: Plugins
In reply to: [Plugin: File Gallery] Compatibility Issue with Advanced Custom Fields Plugin@serdominik: I’ve tried the latest version of Advanced Custom Fields (3.2.5) with File Gallery 1.7.4.1 under WordPress 3.3.2 and everything works fine, even image upload.
Please post a bit more info if you can, for example which types of fields don’t work – thank you!
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] Parse error@crmart: thanks for the useful info! I’ll fix it for v1.7.5.
Forum: Plugins
In reply to: [File Gallery] Is File Gallery working on Multisite Installations ?@antoinicolas: multisite support is coming soon, most probably in v1.7.6.
Once I get 1.7.5 out of the way, MS support is number one on my list for 1.7.6.
@everybody: it will be fixed in v1.7.5 of the plugin, coming soon.
sorry I haven’t updated it yet, but my free time has been non-existent for a while now. I’ll try to release it this weekend.
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] Previous/Next options with thickboxHi, and sorry for responding this late:
@isle2isle: the problem with your previous/next links is, if I recall correctly, that the links under your images, the ones within the caption, are links to PDF files – and that’s what would lock up your browser – the lightbox trying to load the PDF file.
I’ll post more info later, I’ve been really busy for the past few weeks and had no time to dedicate to File Gallery.
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] Edit Image in post – custom taxonomies?lowe_22: I can try 🙂
Could you list here all the filters and actions you’ve used? It’d help a lot.
Thanks! 🙂
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] debug options and help?In the next version of the plugin, I’ll hook all the debugging to the Debug Bar plugin. You’ll have to install it, but I think that having all debug data in one place makes it waaay easier to see what’s going on under the hood.
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] Multiple Galleries per post? How?@paaljoachim: something like this should do the trick:
[gallery link="file" linkclass="thickbox"]Forum: Plugins
In reply to: [File Gallery] Where does the File Gallery code begin, ie 1st div@degas: the beginning of a gallery output starts in “file-gallery/includes/templating.php”, but you can filter the output using a filter. try something like this:
function modify_gallery_output($gallery_output, $post_id, $gallery_id) { // modify $gallery_output contents return $gallery_output; } add_filter('file_gallery_output', 'modify_gallery_output', 10, 3);hey @carbeck 🙂 could you explain this in a bit more detail?