Magento – Edit Product page file upload button

configurable-productcustom-optionsfile upload

I was wondering if someone knows how i can customize the "browse" (change language, and add some css to it ) button for uploading a file on the product page(custom options)

The customer should be able to upload multiple files, no you can only upload 1?

I also want to hide the max allowed image dimensions.

Thanks!

Best Answer

I just checked on my local version so it would be changing the button styling etc. in the Styles.css and then change the following file magento\app\code\core\Mage\Catalog\Model\Product\Option\Type\File.php

where you find this line

if (!$upload->receive()) {

and change it to this one

if (!$upload->receive($file)) {