php - Hide thumbnail of Backend file uploader in Magento? -


i using magento's default file uploader in custom modules. how can hide image thumbnail shown in image below?

enter image description here

in form.php of custom extention change second argument image file

before

   $fieldset->addfield('before_image', 'image', array(               'label'     => mage::helper('testimonials')->__('before image'),               'required'  => false,               'name'      => 'before_image',           )); 

after

 $fieldset->addfield('before_image', 'file', array(           'label'     => mage::helper('testimonials')->__('before image'),           'required'  => false,           'name'      => 'before_image',       )); 

Comments

Popular posts from this blog

c++ - Linked List error when inserting for the last time -

java - activate/deactivate sonar maven plugin by profile? -

java - What is the difference between String. and String.this. ? -