Marcel Brinkkemper
Forum Replies Created
-
Forum: Plugins
In reply to: [Eazyest Gallery] FTP Subfolders are not registered correctlyYou mean Eazyest Gallery, don’t you?
Forum: Plugins
In reply to: [Eazyest Gallery] FTP Subfolders are not registered correctlySame issue as here I guess? -> http://wordpress.org/support/topic/broken-images-on-single-wp-subfolder-install-with-wp-content-in-main-folder?replies=2
Forum: Plugins
In reply to: [Eazyest Gallery] The plugin is not FTP friendly with the _cache directoriesI believe you would find it really nice, but I find it nicer to have it integrated like this. I FTP-upload friendly enough.
Forum: Plugins
In reply to: [Eazyest Gallery] Check FTP folders/images on front-end as wellMaybe in a future version.
Forum: Plugins
In reply to: [Eazyest Gallery] Captions are shown while deactivated.widget .gallery-caption { display:none; }Forum: Plugins
In reply to: [Eazyest Gallery] FTP Subfolders are not registered correctlyWhat is your server setup?
Forum: Plugins
In reply to: [Eazyest Gallery] Not eazy to add Subfolders in the AdminValid point. I’ll work on it.
Forum: Plugins
In reply to: [Eazyest Gallery] The plugin is not FTP friendly with the _cache directoriesThe plugin is FTP-upload friendly. I have moved the resized images to a subdirectory. Otherwise, you would have all image-150×150.jpg images in your directory.
Moving the _cache directories out of the gallery would break the WordPress media integration.Forum: Plugins
In reply to: [Eazyest Gallery] Annoying Donate Button on edit pagesThe buttton is inserted in an action. You should be able to remove this action. I’ll check.
Ok thanks, I have tested with a custom wp-content root, but not combined with WordPress in a subfolder.
Forum: Reviews
In reply to: [Eazyest Gallery] It matches its name !Thank you
Forum: Plugins
In reply to: [Eazyest Gallery] Captions are shown while deactivatedYes, the option only clears them in thumbnail view.
You can hide them with css.Forum: Plugins
In reply to: [Eazyest Gallery] Folder Description Locationyes, it was already in your functions.php (see my mail)
Forum: Plugins
In reply to: [Eazyest Gallery] Captions are shown while deactivatedIt works in RC-6
Forum: Plugins
In reply to: [Eazyest Gallery] Folder Description LocationYes, add this to your child theme functions.php:
It will move the thumbnails and slideshow link to below the description.function move_eazyest_actions() { remove_action('eazyest_gallery_before_folder_content', 'ezg_slideshow_button', 9); remove_action('eazyest_gallery_before_folder_content', 'ezg_folder', 10); add_action('eazyest_gallery_after_folder_content', 'ezg_slideshow_button', 1); add_action('eazyest_gallery_after_folder_content', 'ezg_folder', 2); } add_action( 'eazyest_gallery_ready', 'move_eazyest_actions' );