You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification


helpers/mediahandler.php replaces self::$theme_url (never assigned, and obsolete since VM3) with VmConfig::get('assets_general_path', 'components/com_virtuemart/assets/') This structurally eliminates the cause of the missing /assets/images/vmgeneral/ the default path now points to the component folder, which cannot simply disappear like a folder at the site root.public function onAfterRoute(Event $event): void
{
$app = $this->getApplication();
if (!$app->isClient('site')) {
return;
}
$input = $app->getInput();
if ($input->getCmd('option') !== 'com_virtuemart') {
return;
}
if (!in_array($input->getCmd('view'), ['category', 'virtuemart', 'manufacturer', 'search'], true)) {
return;
}
if ($input->get('limitstart', null) !== null) {
return;
}
$input->set('limitstart', 0);
}
Page created in 0.052 seconds with 9 queries.