Quote from: TR mediendesign on January 20, 2026, 15:57:22 PMHello patbe60,
if I add this fix to the router, the pagination works again and adds "results,1-10" to the URL, but if you open the category again from the shop pages the same problem occurs. If there is no "results..." in the URL it is not working and shows the previously opened sub page products.
Kind regards,
Tobias
SELECT virtuemart_media_id, file_title, file_url, file_is_product_image
FROM #__virtuemart_medias
WHERE file_type = 'product'
ORDER BY virtuemart_media_id DESC
LIMIT 10;Results show file_title with incorrect extensions and file_is_product_image = 0.UPDATE `#__virtuemart_medias`
SET `file_is_product_image` = 1
WHERE `file_type` = 'product'
AND `file_mimetype` LIKE 'image/%'
AND `file_is_product_image` = 0;UPDATE `#__virtuemart_medias`
SET `file_title` = REGEXP_REPLACE(`file_title`, '\\.(jpg|jpeg|png|gif|webp)_[0-9]+$', '.$1')
WHERE `file_title` REGEXP '\\.(jpg|jpeg|png|gif|webp)_[0-9]+$'
AND `file_type` = 'product';Questions:Page created in 0.102 seconds with 13 queries.