Aesqe
Forum Replies Created
-
Forum: Plugins
In reply to: [File Gallery] Yoxview Integration for File Gallery?@yungyaw: I’ve downloaded the lightbox script and I’ll take a look at it as soon as I can, shouldn’t be too difficult to integrate. Sorry it took me so long to reply, it’s the busiest time of year… :/
@pixelgun: the paths are listed on the options page just for informational purposes. If they are not correct after the move, just deactivate and reactivate the plugin and they will be updated, don’t worry 🙂
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] Different sized thumbs on recent postRaw-m, please try File Gallery 1.6.5.1 – it’s still not a public release (it’s in the trunk as the development version), but you can download it from here: http://downloads.wordpress.org/plugin/file-gallery.zip
then, after you install it, add this code before the_content();, replacing echo file_gallery_shortcode(array(‘size’=>’medium’)); with it:
file_gallery_overrides(array('size'=>'medium'));this will override the arguments within the gallery shortcode for this post.
let me know if it works ok for you 🙂
The rel attribute should be outputted by default, yes. Could you please paste the arguments you’ve used for the file_gallery_shortcode() function here so I can figure out what the problem is?
Thanks 🙂
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] Ergonomy problem@li-an: it happens when the size chosen for display in File Gallery box does not exist for a certain image. I’ll fix it in next release, which should be out by Monday 🙂
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] CSS include?@hubert: the CSS file should be included in the page automatically if it’s in the same folder as the gallery.php file and is named gallery.css.
If this is not working for you, please e-mail me your custom template (aesqe@skyphe.org) and I’ll get back to you asap.
Thanks 🙂
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] Thank youThanks, magaworks 🙂
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] Different sized thumbs on recent posthey Raw-m 🙂
file_gallery_shortcode function only returns values, it does not echo (print) them. all you have to do is add ‘echo’ in front of it, like this:
query_posts('showposts=1'); if (have_posts()) : while (have_posts()) : the_post(); ?> <div id="recent-gallery"> <h2 class="recent-head">Recent</h2> <div class="entry"> <?php echo file_gallery_shortcode(array('size'=>'medium')); the_content(); ?> </div> </div>Forum: Plugins
In reply to: [File Gallery] File Gallery – user templates – clean options bug?That’s really, really weird – and also quite impossible 😐
Unless you have File Gallery caching turned on, file gallery templates folder and file-gallery-templates subfolder within your theme’s folder are continuously rechecked for templates – nothing gets saved/cached anywhere…
I tried to replicate the bug, but with no luck. I turned file gallery caching on and deleted the file gallery templates subfolder within the theme folder and, as expected, the deleted template names were still on the list. But after I’d clear or disable the cache, templates would be rescanned for and the missing ones would be removed from the list…
The default template names (default, file-gallery, list and simple) will always be present on the list even if you delete the templates subfolder from the plugin folder.
Can you test this on another WordPress installation to confirm?
Thanks in advance! 🙂
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] gallery template simple@exconny: I’ve changed a few things in simple template’s javascript, it could be clashing with your lightbox script :/ Are you using a custom lightbox or a plugin, or something else…?
Also, please feel free to contact me via e-mail (aesqe@skyphe.org) for anything File Gallery related.
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] gallery template simpleThanks for reporting this, exconny 🙂
‘thickbox’ class got hardcoded in ‘simple’ template by mistake, I was testing variable overriding (namely link, linkclass, and mimetype) within the template itself and forgot to clean up – sorry.
I’m going to leave mimetype=’image’ hardcoded in ‘simple’ template, because that template is meant to be used with images only. I’ve now made it so that if you set link to ‘none’, then the big picture on the left won’t link to anything, but the thumbnails will still load the bigger picture.
And good job spotting the ‘link_size’ related linking bug when link is set to none, thanks 🙂
I’ve uploaded the version with these bugs fixed into repository as the current trunk version, you can download it from here: http://wordpress.org/extend/plugins/file-gallery/download/ (click on the Development Version link at the bottom) – it should be version 1.6.5.1-beta. If it’s not that version, please try again in 10-15 minutes when the repository refreshes.
Let me know if that’s all OK with you 🙂
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] gallery template simplev1.6.5 is out, you can use the link_size parameter to choose linked image size, like this:
[gallery link="file" link_size="large" template="simple"]
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] class aligncenter brokenhey Li-An 🙂
sorry about that, I’ve fixed it in 1.6.5.
so did you try activating just “file gallery” without activating “admin language” plugin? 😀
i’ve investigated and found out a few things:
1) “admin language” could be the bigger culprit here because it seems that it’s calling the function ‘get_user_option’ too soon (‘locale’ filter is located in ‘l10n.php’ file which is loaded before ‘user.php’ file in which ‘get_user_option’ function resides) – i’ll contact the author
2) “admin language” is breaking plugin translations by returning ‘false’ instead of ‘$locale’ in one place
2) i should move the load_plugin_textdomain call to ‘init’ hook for better compatibility with other pluginsthanks for reporting this 😉
Forum: Plugins
In reply to: [File Gallery] [Plugin: File Gallery] gallery template simplehi exconny 🙂
in v1.6.5 you’ll be able to choose which wordpress image size you want the thumbnail linked to. for now it is hardcoded to full size, sorry :/
i’ll be releasing v1.6.5 in a day or two.