klihelp
Forum Replies Created
-
You can modify the functions with filters.
add_filter("post_gallery", "my_custom_ezg_thumbnails",10,2); function ezg_custom_thumbnails() { // Remove the thumbnails function remove_action('eazyest_gallery_thumbnails','ezg_thumbnails', 5); // Add custom thumbnails function remove_action('eazyest_gallery_thumbnails','my_custom_ezg_thumbnails', 5); } add_action('eazyest_gallery_before_folder_content','ezg_custom_thumbnails', 1); // modified ezg_thumbnails() function function my_custom_ezg_thumbnails( $post_id = 0, $page = 0 ) { ... }I tried the extra fields, but for me didn’t worked properly..
Also, you could see if you find something you want to modify in the template files. Copy the theme files from Eazyest Gallery plugin directory to your template directory and feel free to edit the code.The wordpress template page calculations are simple –
The default custom-post-types are: post, page, menu …
Eazyest Gallery plugin uses galleryfolder for that.
If single-galleryfolder.php doen’t exist it takes the single.php.
There is a nice picture about templating in the WordPress codex:
http://codex.wordpress.org/Template_HierarchyYes, this works well if you delete images from an existing directory. Doesn’t remove the attachments if the directory is deleted.
Forum: Plugins
In reply to: [Eazyest Gallery] prettyPhoto support for Eazyest GalleryYou can include the prettyPhoto files with your template.
In admin set the images link-to option to image source.
In javascript call prettyPhoto$(“.gallery-item a”).prettyPhoto();
Forum: Plugins
In reply to: [Eazyest Gallery] Use a page post type for Eazyest Gallery folders; not postno, wordpress will look for the custom-post-type template files.
The default custom-post-types are: post, page, menu …Eazyest Gallery plugin uses galleryfolder for that.
There is only 1 special template file for the plugin: eazyest_image.php, all the others are wordpress based.Forum: Plugins
In reply to: [Eazyest Gallery] Use a page post type for Eazyest Gallery folders; not postThe wordpress template page calculations are simple –
If single-galleryfolder.php doen’t exist it takes the single.php.
There is a nice picture in the WordPress codex:
http://codex.wordpress.org/Template_HierarchyCopy the special theme files from Eazyest Gallery plugin directory to your template directory and feel free to edit the code.
Forum: Plugins
In reply to: [Eazyest Gallery] thumbnail descriptionsYou are right, this is complicated.
You could add your own gallery filter, because the ezg_thumbnails functions making a gallery shortcode.add_filter("post_gallery", "my_custom_gallery_filter",10,2); // customize Eazyest Gallery thumbnails // copy and edit that plugin function function my_custom_gallery_filter($output, $attr) { ... }Forum: Plugins
In reply to: [Eazyest Gallery] thumbnail descriptions1. You can change the view mode to excerpt and then you have a textarea with the title; those two little icons above the thumbnails table.
2. OR Click on Edit link bellow thumbnail, the attachment edit page has an editor for your description.
TO show it on the frontend:
Copy the special theme files from Eazyest Gallery plugin directory to your template directory and feel free to edit the code.
Use the_content() or the_excerpt() in your template file, just like in any other page template.Copy the eaziest-image.php template from the plugin directory (themes subdirectory) to the template directory and edit the file content.
There is one more thing to do –
Un-Attached counter shows the number of eazyest gallery zomby attachments.
Forum: Plugins
In reply to: [Eazyest Gallery] Missing closing DIV destroys page layoutyes, closing </div> for <div.fluid_container> is missing
in class-eazyest-slideshow.php#L216Forum: Plugins
In reply to: [Eazyest Gallery] disable folder/image collector?// Disable Ajax collection add_filter( 'eazyest_gallery_ajax_collect', '__return_false' );Forum: Plugins
In reply to: [Eazyest Gallery] Disable column in admin table?The ‘eazyest_gallery_subfolders_columns’ filter don’t hide the columns for the row’s Quick Edit mode.
Forum: Plugins
In reply to: [MP6] How About A Drop Down Menu Instead of Left Side Menu?This would be very good! I’m using Ozh’s Admin Drop Down Menu.
Forum: Plugins
In reply to: [Eazyest Gallery] Disable column in admin table?The filters to hide table columns ( ‘eazyest_gallery_images_columns’ and ‘eazyest_gallery_subfolders_columns’ ) are not applied, when the table is empty.
I still have this problem.