Jump to content

404 Hata Sayfası Düzenleme


Recommended Posts

Merhaba,

Sitemin 404 hata sayfasını nereden düzenleyebilir, hata sayfasına mesela ; yeni ürünlerden bir kaç tanesini nasıl eklerim? Burada amacım hata sayfasına üye girdiğinde yönlendirici olarak bir kaç içerik ile karşılaşması.

 

Teşekkürler.

Link to comment
Share on other sites

404.tpl ye şu kodu ekleyin

{include file="./product-list.tpl" products=$products}

Sonra conrollers/front/PageNotFoundController.php yi açın

 

içinde 404.tpl olan yerin hemen üst satırına

$this->productSort();

		// Override default configuration values: cause the new products page must display latest products first.
		if (!Tools::getIsset('orderway') || !Tools::getIsset('orderby'))
		{
      $this->orderBy = 'date_add';
      $this->orderWay = 'DESC';
		}

		$nbProducts = (int)Product::getNewProducts(
			$this->context->language->id,
			(isset($this->p) ? (int)($this->p) - 1 : null),
			(isset($this->n) ? (int)($this->n) : null),
			true
		);

		$this->pagination($nbProducts);

		$products = Product::getNewProducts($this->context->language->id, (int)($this->p) - 1, (int)($this->n), false, $this->orderBy, $this->orderWay);
		$this->addColorsToProductList($products);

		$this->context->smarty->assign(array(
			'products' => $products,
			'add_prod_display' => Configuration::get('PS_ATTRIBUTE_CATEGORY_DISPLAY'),
			'nbProducts' => (int)($nbProducts),
			'homeSize' => Image::getSize(ImageType::getFormatedName('home')),
			'comparator_max_item' => Configuration::get('PS_COMPARATOR_MAX_ITEM')
		));

bu kodu yapıştırın sonra sonra önbelleği boşaltın olacak

  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...