Title: Modify Folder Icon
Last modified: August 21, 2016

---

# Modify Folder Icon

 *  Resolved [NahuelFK](https://wordpress.org/support/users/nahuelfk/)
 * (@nahuelfk)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/modify-folder-icon/)
 * Is there a way to show the folder icon but not displaying the image in the gallery
   attached to it?
 * [http://fifam08.com.ar/kits/](http://fifam08.com.ar/kits/)
 * I want the logo on OFC only to be displayed as a folder icon. (If you enter the
   gallery, you’ll see the image).
 * Thanks!
 * [http://wordpress.org/plugins/eazyest-gallery/](http://wordpress.org/plugins/eazyest-gallery/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [klihelp](https://wordpress.org/support/users/klihelp/)
 * (@klihelp)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/modify-folder-icon/#post-4449495)
 * You can enable Extra Fields for Folders for the icon url, than custom code the
   gallery output.
 * —
    Also this could be done with folder Featured Images (not supported yet) and
   custom gallery output to exclude this image from the attachments. see: [http://wordpress.org/support/topic/featured-image-113](http://wordpress.org/support/topic/featured-image-113)
 *  [klihelp](https://wordpress.org/support/users/klihelp/)
 * (@klihelp)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/modify-folder-icon/#post-4449504)
 * You 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_filter](http://codex.wordpress.org/Function_Reference/add_filter)
 * The 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');
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Modify Folder Icon’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/eazyest-gallery_969cb1.svg)
 * [Eazyest Gallery](https://wordpress.org/plugins/eazyest-gallery/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/eazyest-gallery/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/eazyest-gallery/)
 * [Active Topics](https://wordpress.org/support/plugin/eazyest-gallery/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/eazyest-gallery/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/eazyest-gallery/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [klihelp](https://wordpress.org/support/users/klihelp/)
 * Last activity: [12 years, 2 months ago](https://wordpress.org/support/topic/modify-folder-icon/#post-4449504)
 * Status: resolved