Hello,
J 5.4.0. VM 4.6.0
When i go to a subcategory with multiple pages, i go for example to the last page (3). Then i click on de 1 (first page), no page change, it stays on page 3.
And (i think same problem): Now i go back to Home of the website a go again to the same subcategory i was in before above. Now the page started with the last page (3) and not the first page
I recently updated to 4.6.0, i think it's a 4.6.0 bug.
Regards Michel
Im facing the same problem after upgrading to VM 4.6.4 from lower.
Did u resolved?
Thanks
Open - components/com_virtuemart/router.php
Find the following codes between lines 495 and 499:
$limitstart = intval($limitstart);
$limit = intval($limit);
if ( $limitstart>0 ) {
Replace the above with:
$rawLimitstart = $limitstart;
$limitstart = intval($limitstart);
$limit = intval($limit);
if ( $limitstart >= 0 && $rawLimitstart !== null ) {
This should resolve the issue. :)
$app = JFactory->getApplication();
$limitStart = $app->input->getInt('limitstart');
Is another possibility