Upload Separate Image For Each Category.

Hello my friends I have 12 categories. When I submit a product and no image is selected for that product, I want to upload image of that category select when I submitted a new product. Or while on the product page if the product was without a image! Show the image of that category.
In fact, I do not want to display one images for all products. i want show category image.
thanks for your help. :wub: :wub:

Please forgive the slave for typographical errors. I don't good English. :-( :-(

It is not possible out of the box. Hire someone to perform this small modification for you

It is not possible out of the box. Hire someone to perform this small modification for you

Hello my dear friend.

In the PHP code of the product send section:

For example, I can use the following code:

The name of my photos is the category ID:
510.png
512.png
520.png and ...

if(!isset($product_data['images']) || empty($product_data['images'])){
$product_data['images'] = "media/images/".$product_data['category_id'].".png";

}