Marcel Brinkkemper
Forum Replies Created
-
Forum: Plugins
In reply to: [Eazyest Gallery] Fatal error: Call to undefined function lg_db()Yeah, sorry. Fixed in RC-6
Forum: Plugins
In reply to: [Eazyest Gallery] Remove "Really Random Images"-line from WidgetYes, it was a leftover from Lazyest Widgets.
Forum: Plugins
In reply to: [Eazyest Gallery] Remove "Really Random Images"-line from WidgetThe title should have been ‘Random Images’ this is the default title if you leave the title input empty.
You can hide it with css:
Add this rule to your stylesheet:.widget_eazyest_random_image h3 { display:none; }Forum: Plugins
In reply to: [Eazyest Gallery] Captions are shown while deactivatedYup, that doesn’t work yet.
Fix is in trunk.Forum: Plugins
In reply to: [Eazyest Gallery] images db records still there after deleting foldersGot it. The wp_upload_dir filter didn’t get the $_POST variables.
Fix will be in RC-5
Thanks!Forum: Plugins
In reply to: [Eazyest Gallery] lg_slideshow: folder optionFixed in trunk please wait for RC-5 or download trunk.
Forum: Plugins
In reply to: [Eazyest Gallery] lg_slideshow: folder optionThanks, I’m on it.
Forum: Plugins
In reply to: [Eazyest Gallery] thoughts about plugin directionSorry, you can’t run both Eazyest and Lazyest Gallery on one site. This is because WordPress renames image filenames ‘sanitizes’ on upload. Eazyest Gallery also renames folder names in file system to match the post title.
Eazyest Gallery will find your images when you upload them by ftp. However, this is only in wp-admin, not in frontend like Lazyest Gallery. If you delete images by ftp, Eazyest Gallery will remove the attachments.
You do not need a gallery page for Eazyest Gallery. The nice thing about the folders being custom post types is that you can access them everywhere, like posts. You may use shortcodes in posts and pages, but they serve merely as placeholders. The [lg_gallery] does work and is a good alternative if your theme has no compatible archive template for the gallery.Forum: Plugins
In reply to: [Eazyest Gallery] shortcode optionsThere is no ‘count’ option. The shortcode supports thee options:
‘order’, ‘orderby’, ‘id’, ‘itemtag’, ‘icontag’, ‘captiontag’, ‘columns’, and ‘size’.
The options work like the options for WordPress gallery shortcode.
http://codex.wordpress.org/Gallery_ShortcodeForum: Plugins
In reply to: [Eazyest Gallery] thoughts about plugin directionWell, the upgrade page is maybe a little bit unclear.
The images are NOT stored as custom post types. That wouldn’t be easy, that would be crazy. The images are stored as WordPress attachments and linked to folders. All images are part of WordPress media and can easily be inserted into posts.
The folders however, are stored as custom post types. This opens a lot of possibilities for other plugins/themes to interact, because it uses all standard WordPress filters/actions.In displaying the images, the script also uses/overrides the [gallery] shortcode. Only in displaying folders, the folder custom post type generates the shortcode output. Other plugins that override the [gallery] shortcode (e.g. jetpack) can also alter the Eazyest Gallery folder display.
This plugin solves a lot of shortcomings Lazyest Gallery has like:- incompatibility with sharing buttons plugins
- weird permalinks
- incompatibility with translation plugins
- two separate image pools lazyest-gallery vs wordpress-media
- use of propriety functions for image resizing
Forum: Plugins
In reply to: [Eazyest Gallery] How to get folders to "Full Width Template"?For Twenty Twelve theme you can do it like this:
- Copy from the plugin directory themes/twentytwelve/ the file single-galleryfolder.php to your child theme directory.
- In the file, remove the line
<?php get_sidebar(); ?> - Add the following rule to your stylesheet:
body.single-galleryfolder .site-content { width:100%; }
Forum: Plugins
In reply to: [Eazyest Gallery] How to get folders to "Full Width Template"?Which theme do you use?
Forum: Plugins
In reply to: [Eazyest Gallery] images db records still there after deleting foldersEazyest Gallery changes the upload_dir for post_type galleryfolder. Maybe this fails somewhere on LAMP. However, the Eazyest Gallery demo on http://brimosoft.nl/gallery/ is running LAMP.
Anyhow, I now have a direction to search. Thanks.Forum: Plugins
In reply to: [Eazyest Gallery] images db records still there after deleting foldersI could not reproduce the album/album/ error with trunk.
Add folders in Admin and upload images in Admin -> No errors
Add folders and images outside WordPress -> Auto Index -> No problemsBTW, could you make separate support requests per issue, I might not look again at issues that are marked ‘resolved’
Forum: Plugins
In reply to: [Eazyest Gallery] images db records still there after deleting foldersAu contraire,
It doesn’t ruin my Sunday. I love these kinds of detailed bug reports.
I’ll start working on it tomorrow.
The error 500 is most probably an out-of-execution-time error.
The script processes 20 attachments per request. You can lower it by adding a filter to'eazyest_gallery_max_process_items'(1 parameter, default 20)
I hadn’t looked into the quick edit for folder slug yet. Thanks for noticing.
BTW, it amazes me that the script has been downloaded so many times, and so few people discover bugs (or take the time to report them)
Thanks again.