Bug: Children's products do not inherit images from the parent product (if they don't have their own images).

I tested the Export state field. If I select
- ALL: just unpublished products are displayed. (real bug)
- Unpublished: unpublished products are displayed.
- Published: only published products are displayed.
$images = array_slice($images, 0, 10);
I solved the problem with the non-functioning image limit myself. Set to 10:
When I use the traditional export template for the Virtuemart component, Operation -> Product, export type -> CSV, Template fields -> product_sku, virtuemart_product_id
It just exports 365 products. I used the old export templates, created a new clean one - each time the export is the same.
This is not a browser cache issue.
I already wrote earlier – you have an error in the forms. Some fields in these forms are simply dead – this data is not passed to the function that generates the export. If, in my case, I selected the “-ALL-” option, I should see all products – published and unpublished.
SELECT `ucray_virtuemart_products`.`virtuemart_product_id`,
`ucray_virtuemart_products`.`product_parent_id`,
`ucray_virtuemart_products`.`product_sku`
FROM `ucray_virtuemart_products`
LEFT JOIN `ucray_virtuemart_product_prices` ON `ucray_virtuemart_products`.`virtuemart_product_id` = `ucray_virtuemart_product_prices`.`virtuemart_product_id`
LEFT JOIN `ucray_virtuemart_product_manufacturers` ON `ucray_virtuemart_products`.`virtuemart_product_id` = `ucray_virtuemart_product_manufacturers`.`virtuemart_product_id`
LEFT JOIN `ucray_virtuemart_manufacturers` ON `ucray_virtuemart_product_manufacturers`.`virtuemart_manufacturer_id` = `ucray_virtuemart_manufacturers`.`virtuemart_manufacturer_id`
LEFT JOIN `ucray_virtuemart_manufacturers_pl_pl` ON `ucray_virtuemart_product_manufacturers`.`virtuemart_manufacturer_id` = `ucray_virtuemart_manufacturers_pl_pl`.`virtuemart_manufacturer_id`
LEFT JOIN `ucray_virtuemart_product_categories` ON `ucray_virtuemart_products`.`virtuemart_product_id` = `ucray_virtuemart_product_categories`.`virtuemart_product_id`
LEFT JOIN `ucray_virtuemart_currencies` ON `ucray_virtuemart_currencies`.`virtuemart_currency_id` = `ucray_virtuemart_product_prices`.`product_currency`
LEFT JOIN `ucray_virtuemart_product_shoppergroups` ON `ucray_virtuemart_product_shoppergroups`.`virtuemart_product_id` = `ucray_virtuemart_products`.`virtuemart_product_id`
WHERE ucray_virtuemart_products.published = 0
GROUP BY `ucray_virtuemart_products`.`virtuemart_product_id`
ORDER BY `ucray_virtuemart_products`.`product_sku` ASC
The same applies to images—if I specify that I want to display a maximum of 10 photos, it does not work—all of them are displayed.
So if you are using file_url field you will see all images displayed.
{"error":true,"code":0,"message":"Division by zero"}