lotuswebstudio Posted July 28, 2015 Share Posted July 28, 2015 Hi everyone, My block related products its always showing the same products, I mean, it shows the same 6 products from the same category and I have more than just 6 products in that category, what can I do?. How can I make it "more random". Thank u Link to comment Share on other sites More sharing options...
globosoftware.net Posted July 29, 2015 Share Posted July 29, 2015 Try my solution. You have add: shuffle($$category_products); In your module productscategory. You have to add above line to file productscategory.php. It will look like this: public function hookProductFooter($params) { $id_product = (int)$params['product']->id; $product = $params['product']; $cache_id = 'productscategory|'.$id_product.'|'.(isset($params['category']->id_category) ? (int)$params['category']->id_category : (int)$product->id_category_default); if (!$this->isCached('productscategory.tpl', $this->getCacheId($cache_id))) { $category = false; if (isset($params['category']->id_category)) $category = $params['category']; else { if (isset($product->id_category_default) && $product->id_category_default > 1) $category = new Category((int)$product->id_category_default); } if (!Validate::isLoadedObject($category) || !$category->active) return false; // Get infos $category_products = $category->getProducts($this->context->language->id, 1, 100); /* 100 products max. */ $nb_category_products = (int)count($category_products); $middle_position = 0; // Remove current product from the list if (is_array($category_products) && count($category_products)) { foreach ($category_products as $key => $category_product) { if ($category_product['id_product'] == $id_product) { unset($category_products[$key]); break; } } $taxes = Product::getTaxCalculationMethod(); if (Configuration::get('PRODUCTSCATEGORY_DISPLAY_PRICE')) { foreach ($category_products as $key => $category_product) { if ($category_product['id_product'] != $id_product) { if ($taxes == 0 || $taxes == 2) { $category_products[$key]['displayed_price'] = Product::getPriceStatic( (int)$category_product['id_product'], true, null, 2 ); } elseif ($taxes == 1) { $category_products[$key]['displayed_price'] = Product::getPriceStatic( (int)$category_product['id_product'], false, null, 2 ); } } } } // Get positions $middle_position = (int)round($nb_category_products / 2, 0); $product_position = $this->getCurrentProduct($category_products, (int)$id_product); // Flip middle product with current product if ($product_position) { $tmp = $category_products[$middle_position - 1]; $category_products[$middle_position - 1] = $category_products[$product_position]; $category_products[$product_position] = $tmp; } // If products tab higher than 30, slice it if ($nb_category_products > 30) { $category_products = array_slice($category_products, $middle_position - 15, 30, true); $middle_position = 15; } } shuffle($category_products); // Display tpl $this->smarty->assign( array( 'categoryProducts' => $category_products, 'middlePosition' => (int)$middle_position, 'ProdDisplayPrice' => Configuration::get('PRODUCTSCATEGORY_DISPLAY_PRICE') ) ); } return $this->display(__FILE__, 'productscategory.tpl', $this->getCacheId($cache_id)); } -------------------------------------------------------------------------- Our Prestashop development services: greenwebcorp.com Our Shopify development services: shopifydevelopers.net Link to comment Share on other sites More sharing options...
gabdara Posted July 29, 2015 Share Posted July 29, 2015 Try this answer. Link to comment Share on other sites More sharing options...
lotuswebstudio Posted July 31, 2015 Author Share Posted July 31, 2015 Thank u very much! I did it with gabdara's method, thank u greenweb team Link to comment Share on other sites More sharing options...
Recommended Posts