VM : Release Date (J. Released) - VM support
4.4.6 : ASAP/18 Feb 2025 (J4.4.x/J5.2.4) - J3/4/5
4.4.8 : 1 April 2025 (J4.4.x/J5.2.5)
4.6.0 : 15 April 2025 (J4.4.x/J5.3.0)
4.6.2 : 27 May 2025 (J4.4.x/J5.3.1)
4.6.4 : 8 July 2025 (J4.4.x/J5.3.2)
4.6.6 : 19 August 2025 (J4.4.x/J5.3.3)
4.8.0 : 14 October 2025 (J4.4.x/J5.4.0)
5.0.0 : 14 October 2025 (J5.4.0/J6.0.0) - J5/6
5.0.1 : 25 November 2025 (J5.4.1/J6.0.1)
5.0.2 : 6 January 2026 (J5.4.2/J6.0.2)
5.0.3 : 17 Febuary 2026 (J5.4.3/J6.0.3)
5.0.4 : 31 March 2026 (J5.4.4/J6.0.4)
5.1.0 : 14 April 2026 (J5.4.x/J6.1)
(...)
5.2.0 : 13 October 2026 (J5.4.x/J6.2)
(...)
5.3.0 : 13 April 2027 (J5.4/J6.3)
(...)
5.4.0 : 19 October 2027 (J5.4/J6.4)
6.0.0 : 19 October 2027 (J6.4/J7.0) - J6/7
7.0.0 : 16 October 2029 (J7.4/J8.0) - J7/8
8.0.0 : 14 October 2031 (J8.4/J9.0) - J8/9
if(!empty($this->showsearch) and !empty($this->keyword) or !empty($this->productModel->searchcustoms)) {
vmdebug('Lets load the search',$this->keyword,$this->productModel->searchcustoms);
// Load the products in the given category
$ids = $this->productModel->sortSearchListQuery (TRUE, $this->categoryId);
VirtueMartModelProduct::$_alreadyLoadedIds = array_merge(VirtueMartModelProduct::$_alreadyLoadedIds,$ids);
$this->vmPagination = $this->productModel->getPagination($this->perRow);
$this->orderByList = $this->productModel->getOrderByList($this->categoryId);
$this->products['products'] = $this->productModel->getProducts ($ids);
$this->productModel->addImages($this->products['products'], $imgAmount );
}
Replace the above by: if (!empty($this->keyword) or !empty($this->productModel->searchcustoms)) {
vmdebug('Lets load the search', $this->keyword, $this->productModel->searchcustoms);
// Load the products in the given category
$ids = $this->productModel->sortSearchListQuery(true, $this->categoryId);
VirtueMartModelProduct::$_alreadyLoadedIds = array_merge(VirtueMartModelProduct::$_alreadyLoadedIds, $ids);
$this->vmPagination = $this->productModel->getPagination($this->perRow);
$this->orderByList = $this->productModel->getOrderByList($this->categoryId);
$this->products['products'] = $this->productModel->getProducts($ids);
$this->productModel->addImages($this->products['products'], $imgAmount);
}
Page created in 0.089 seconds with 13 queries.