simple way to exclude thumbnails in content_image plugin
Posted: Mon Jun 29, 2009 5:13 pm
So,
If you are using content_image plugin and you want to exclude thumbnails from showing up admin drop down panel (when f. e. editing or creating content), do this:
Open the file Content.inc.php (lib > classes > contenttypes) and ind the row ~300.
Change this:
Into this:
Hope this helps!
Liudas
If you are using content_image plugin and you want to exclude thumbnails from showing up admin drop down panel (when f. e. editing or creating content), do this:
Open the file Content.inc.php (lib > classes > contenttypes) and ind the row ~300.
Change this:
Code: Select all
$dropdown = create_file_dropdown($blockNameId['id'],$dir,$data,'jpg,jpeg,png,gif',$optprefix,true);
Code: Select all
$dropdown = create_file_dropdown($blockNameId['id'],$dir,$data,'jpg,jpeg,png,gif',$optprefix,true,'','thumb_');
Liudas