Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In order to replace default product image in Magento, we have to replace images in this folder:

skin\frontend\mytheme\default\images\catalog\product\placeholder

There are 3 files:

  • image.jpg
  • small_image.jpg
  • thumbnail.jpg

I need to replace those files with PNG. Where is the code that I can change the .jpg part?

share|improve this question

2 Answers

up vote 14 down vote accepted

In the admin, under System > Configuration > Catalog > Product Image Placeholders, you can upload any file you want.

share|improve this answer
Do you know where the values is stored in database? I'm going to create script file. – Jeaffrey Gilbert Nov 12 '10 at 15:24
2  
Okay I've found it, in core_config_data table. Thanks. – Jeaffrey Gilbert Nov 12 '10 at 17:13

Just do add information to the reply - the images are stored originally in the path: bdebela/skin/frontend/base/default/images/catalog/product/placeholder.

Names and sizes:

  • image.jpg (262 x 262)
  • small_image.jpg (125 x 135)
  • thumbnail.jpg (50 x 50)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.