klihelp
Forum Replies Created
-
Forum: Plugins
In reply to: [Eazyest Gallery] Port other than standard is not used (50002 instead of 80)Is this fixed?
Forum: Plugins
In reply to: [Eazyest Gallery] tags for individual images// apply tags to attachments function add_tags_to_attachments() { register_taxonomy_for_object_type( 'post_tag', 'attachment' ); } add_action( 'init' , 'add_tags_to_attachments' );Read more here:
http://code.tutsplus.com/articles/applying-categories-tags-and-custom-taxonomies-to-media-attachments–wp-32319Forum: Plugins
In reply to: [Eazyest Gallery] one picture on page with click to see slide in lightboxIs this fixed?
Forum: Plugins
In reply to: [Eazyest Gallery] LinksIs this fixed?
Forum: Plugins
In reply to: [Eazyest Gallery] WPML/ Thumbnails issue?How did you resolve this?
Did you resolved this?
Forum: Plugins
In reply to: [Eazyest Gallery] open thumbnail in window easyest galleryJB, in admin there is a plugin settings page, where you can set thumbnail links to lightbox.
Forum: Plugins
In reply to: [Eazyest Gallery] Download whole galleryGoogle search for related plugins:
http://wordpress.org/plugins/download-attachments/
http://wordpress.org/plugins/download-zip-attachments/Forum: Plugins
In reply to: [Eazyest Gallery] Rotating imagesDO you still got that problem? How did you resolve it?
Forum: Plugins
In reply to: [Eazyest Gallery] folder navigation overlappingDo you still have this problem?
Forum: Plugins
In reply to: [Eazyest Gallery] Remove Folder Title in PostsSandra, the code above were just starting point, the main function body needs to be written. How did you resolve it.
Forum: Plugins
In reply to: [Eazyest Gallery] Does this work with Social Gallery Lite?Did you managed to test it with the Social Gallery Lite plugin?
In the Eazyest Gallery plugin settings you can choose thumbnail link types..Forum: Plugins
In reply to: [Eazyest Gallery] Attachment view only half visible, scroll problem.Did you resolve this?
Yes, this is normal. The main content area with the attachment image is bellow the header area. Modify the template files and if the header height is smaller than you see more from the content area.Forum: Plugins
In reply to: [Eazyest Gallery] Gallery on custom pageHow did you resolve this?
You can insert into the page this shortcode [eazyest_gallery folder=”ExampleFolder”]Forum: Plugins
In reply to: [Eazyest Gallery] Modify Folder IconYou can use also the eazyest_gallery_folder_icon filter.
The plugin uses that filter for the folder icon:
$icon = apply_filters( ‘eazyest_gallery_folder_icon’, eazyest_gallery()->plugin_url . ‘frontend/images/folder-icon.png’ );WordPress page about how to add filters:
http://codex.wordpress.org/Function_Reference/add_filterThe code for your functions.php:
// Custom folder icon thumbnail function custom_folder_icon() { return 'custom/path/to/image.jpg'; } add_filter('eazyest_gallery_folder_icon','custom_folder_icon');