Jump to content

[SOLUCIONADO]dos paginas de productos distintas


hachedocho

Recommended Posts

O si quieres directamente un fichero distinto, quizas en:

ProductController.php

Aqui:

		$this->setTemplate(_PS_THEME_DIR_.'product.tpl');

hacer algo asi:

if ($this->product->id=='ID PRODUCTO') {
		$this->setTemplate(_PS_THEME_DIR_.'product2.tpl');
} else {

$this->setTemplate(_PS_THEME_DIR_.'product.tpl');

}

(No se si funciona.... ...)

 

Buenas

 

Tengo modificado product.tpl con un formulario adicional que me vale para algunos productos de mi tienda pero en otros productos no quiero que salga. Sería posible tener 2 product.tpl distintos y decirle al prestashop de este producto tira de product.tpl y de este otro tira de product2.tpl?

 

Gracias

Edited by hachedocho (see edit history)
Link to comment
Share on other sites

O si quieres directamente un fichero distinto, quizas en:

ProductController.php

Aqui:

		$this->setTemplate(_PS_THEME_DIR_.'product.tpl');

hacer algo asi:

if ($this->product->id=='ID PRODUCTO') {
		$this->setTemplate(_PS_THEME_DIR_.'product2.tpl');
} else {

$this->setTemplate(_PS_THEME_DIR_.'product.tpl');

}

(No se si funciona.... ...)

Edited by rafaelamargo (see edit history)
  • Like 1
Link to comment
Share on other sites

O si quieres directamente un fichero distinto, quizas en:

ProductController.php

Aqui:

		$this->setTemplate(_PS_THEME_DIR_.'product.tpl');

hacer algo asi:

if ($this->product->id=='ID PRODUCTO') {
		$this->setTemplate(_PS_THEME_DIR_.'product2.tpl');
} else {

$this->setTemplate(_PS_THEME_DIR_.'product.tpl');

}

(No se si funciona.... ...)

 

Muchas gracias funcionan las dos! Pero me quedo con la segunda es menos engorroso

 

Gracias de nuevo

Link to comment
Share on other sites

  • nadie locked this topic
Guest
This topic is now closed to further replies.
×
×
  • Create New...