VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Topic started by: patbe60 on October 20, 2018, 15:13:21 PM

Title: search engine doesn't work properly since VM 3.2.6
Post by: patbe60 on October 20, 2018, 15:13:21 PM
I' am on VM 3.4.2 now and have detected the following problem:

When displaying the search result on several pages (5, 10, 20 per page) the results are listed correctly when going forward to the next pages.
When I go back it works fine until page 2. When clicking on page 1 I am led to the shop homepage instead of page 1 of the search results.

This problem started with VM 3.2.6. I have tested this issue with a few versions before 3.2.6 and a few versions after 3.2.4 including 3.4.2

Regards
Patrik
Title: Re: search engine doesn't work properly since VM 3.2.6
Post by: patbe60 on October 20, 2018, 21:54:36 PM
The problem occurs under the following circumstances (example):

VM Configuration -> Templates -> Set the pagination sequence for the List Box

Frontend default items per list view: 10
For 2 items per row: 6,8,10,12,16,20

When selecting an other number than 10 in the listbox, everything works fine, the URL ends with results,1-x?keyword=searchterm (x= number in the listbox)

As soon as the number is set to 10 the user is guided to the shop homepage, the url ends with ?keyword=searchterm

This means the problem happens when the number in the listbox is identical with the number of Frontend default items per list view.
Title: Re: search engine doesn't work properly since VM 3.2.6
Post by: Milbo on October 22, 2018, 20:28:16 PM
Hmm, I am not able to reproduce this yet. You may contact me via skype.
Title: Re: search engine doesn't work properly since VM 3.2.6
Post by: patbe60 on October 23, 2018, 18:50:37 PM
Problem solved by Milbo. Thanks!

Add the following code in router.php after line 147:

} else if(!empty($query['search']) or !empty($query['keyword'])){
    $segments[] = $helper->lang('results') .',1-'.vmrouterHelper::$limit ;
   }