Hi.
Just wanted to notice you that the latest version of the Virtuemart extension has a bug - at least for our site it had. The "limitstart=0" variable gets removed and the navigation in Virtuemart categories stops working because of that. I just couldn't return to the first page of the category.
The problematic part of the code is this:
// Remove empty limitstart
if ($uri->getVar('limitstart') == '0') {
$uri->delVar('limitstart');
}
I just changed the '0' into '' and it works again:
// Remove empty limitstart
if ($uri->getVar('limitstart') == '') {
$uri->delVar('limitstart');
}
It would be a far better solution to have the variable removed from the url if you clicked on the first number in the category page navigation, but I don't know if this is possible.