It is easily possible to hide images from the navigation port-let using control panel, but I did not find similar option for the Tabular View when a folder contents is displayed.
So here is the solution I have applied.
- Login to Zope Management interface
- Go to /…/portal_skins/plone_content and create a custom version of folder_tabular_view
- In the customized version of the folder_tabular_view locate “class python:test(oddrow, ‘even’, ‘odd’)” and change it to “class python:test(oddrow, ‘even tr-‘ + item_type_class, ‘odd tr-‘ + item_type_class)“
- After these changes TR tag of the folder contents table will have an additional CSS class which we can use to hide unwanted content types
- Save the changes and edit customized CSS file called ploneCustom.css
- Add “.tr-contenttype-image { display: none; }” to hide rows with image content types