News:

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

Main Menu

pagination problem

Started by lipes, June 04, 2012, 02:50:48 AM

Previous topic - Next topic

jjk

#15
It seems to be a problem with the selected "List Limits" not working correctly. In your case it works if you select "50" as a list limit from the frontend dropdown menu.
On my site (version 2.0.9a) I have the opposite problem - while in the manufacturer's view, I can't go to page numbers higher than 1.
Non-English Shops: Are your language files up to date?
http://virtuemart.net/community/translations

adnank

I am also having this problem with J2.5.6 and VM 2.0.2. I have to use 2.0.2 because upgrading breaks VM theme I use. Is there any solution? My website is www.ris.ba and shop is here http://www.ris.ba/en/online-shop

Milbo

The solution is to update.
Should I fix your bug, please support the VirtueMart project and become a member
______________________________________
Extensions approved by the core team: http://extensions.virtuemart.net/

jjk

#18
Quote from: adnank on August 24, 2012, 12:51:24 PM
... I have to use 2.0.2 because upgrading breaks VM theme I use.
Send RT a note that you need to update to VM 2.0.10 and that they should update their theme as well.  ;)
Non-English Shops: Are your language files up to date?
http://virtuemart.net/community/translations

adnank

It is not RT that makes trouble, but VirtuePlanet :) Anyway, problem fixed when I turned on SEO in Virtuemart configuration.

Milbo

adnank, cant be fixed, because we fixed it for 2.0.8e
Should I fix your bug, please support the VirtueMart project and become a member
______________________________________
Extensions approved by the core team: http://extensions.virtuemart.net/

JtC

I have version 2.0.8, but can't upgrade because of so much changes and development so i make a working but little filthy hack on this.

in components/com_virtuemart/views/category/tmpl/default.php

on line 119 where is: <a href="<?php echo $caturl ?>" title="<?php echo $category->category_name ?>"> 
change to <a href="<?php echo $caturl.'?limit=10'; ?>" title="<?php echo $category->category_name ?>">
change number to whatever you like (this is for child categories);

And for categories in menu (assuming you are using virtuemart category menu)
in modules/mod_virtuemart_category/tmpl/default.php
on line ca 28 where is $caturl = JRoute::_('index.php?option=com_virtuemart&view=category&virtuemart_category_id='.$category->virtuemart_category_id);

change  to:
if(empty($category->childs)){$limit = '&limit=10';}else{$limit='';}
$caturl = JRoute::_('index.php?option=com_virtuemart&view=category&virtuemart_category_id='.$category->virtuemart_category_id.$limit);

Solution worked for me. Hope it helps somebody.



randomdev

#22
Thanks for solution above JtC. I am using vm 2.0.6 but cant upgrade due to site and template modifications.
My site also has some links on the standard joomla menu to virtuemart categories but these links dont appear to be editable (I cant just add &limit=12 to the end)
Any idea how I would fix these also?

I still have an issue with acesef when I visit for example page 3 then go back to page 1 and try page 3 again I get an odd link name like /page-22-20 wheres on the first visit to the category the third page will be /page-3 which I think means it is losing the limit value somewhere