klihelp
Forum Replies Created
-
Forum: Plugins
In reply to: [Eazyest Gallery] Gallery thumbnail size is hardcodedThis is good for the gallery thumbnails.
Similarly this you folder thumbnails (the folder icons) could have a filter for the thumbnail size, because it’s hard-coded for the default thumbnail size.
Using WP 3.5.2 / WP 3.6.RC1 with plugin v0.1.3.
Forum: Plugins
In reply to: [Eazyest Gallery] Promising but not yet working as described– To manually sort folders, you have to set this option in the Eazyest Gallery settings page
Forum: Plugins
In reply to: [Eazyest Gallery] Showing videosAs I used so far, the plugin only works with images …
Forum: Plugins
In reply to: [Eazyest Gallery] Rotating imagesYou can regenerate the thumbnails from the original image with Regenerate Thumbnails plugin:
http://wordpress.org/plugins/regenerate-thumbnailsForum: Plugins
In reply to: [Eazyest Gallery] disable folder/image collector?Yes, copy the code into the theme’s functions.php.
The related ticket now is resolved and will be part of the next WordPress.
Add “none” option to $attr[‘link’] for [gallery] shortcode:
http://core.trac.wordpress.org/ticket/18178Setting excerpt mode to default for the gallery admin page solved the extra field savings.
Hope this will be fixed in the plugin.Forum: Plugins
In reply to: [Eazyest Gallery] How to edit single article page// 1. Change subfolder title on the website
// Remove
function kli_ezg_subfolders_title() {return ”;
}
add_filter(‘eazyest_gallery_subfolders_title’,’kli_ezg_subfolders_title’);// 2 3 4 5 6 related to
// http://wordpress.org/support/topic/adding-a-special-htmlphp-string-at-the-end-of-an-image-captiondescriptionForum: Plugins
In reply to: [Eazyest Gallery] Newbee needing helpMaybe you need this one too:
http://wordpress.org/support/topic/missing-menu-item-active-classAll the code above goes into the theme (or plugin) functions.php file.
http://codex.wordpress.org/Functions_File_ExplainedBest to separate the action/filter modifications for admin and frontend:
if ( is_admin() ) { // functions for admin part } else { // functions for front end part }Milestone changed to future release, which means maybe will be in WordPress in next year ..
At least for the media size Do you have plans to implement into the admin media settings?Forum: Plugins
In reply to: [Eazyest Gallery] Sorting not workingIn the plugin settings page there is an option to set sort to manually … haven’t tried the shortcode sorting
Forum: Plugins
In reply to: [Eazyest Gallery] Download whole galleryYou mean download a .zip file with the images?
Forum: Plugins
In reply to: [Eazyest Gallery] Loss of Features from Lazyest GalleryThe folders now are now registered as post types. This means that you can use the_content() function in your templates to get the folder description.
Yes, the plugin uses the default [gallery] shortcode. If you use the extra fields you see that the plugin uses the post_gallery filter.
Best not to modify core wordpress files or core plugin files, because your modifications will be lost if you update them; but also it’s easier to forget about those modifications if you don’t mark it somewhere …See this thread for saving extra fields:
http://wordpress.org/support/topic/saving-extra-fields-not-working