hachedocho Posted December 30, 2014 Share Posted December 30, 2014 (edited) 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 December 30, 2014 by hachedocho (see edit history) Link to comment Share on other sites More sharing options...
rafaelamargo Posted December 30, 2014 Share Posted December 30, 2014 (edited) ¿Y porque no haces un condicional... (en product.tpl) {if $product->id=='id producto'} muestro esto {else} muestro aquello {/if} ? Edited December 30, 2014 by rafaelamargo (see edit history) 1 Link to comment Share on other sites More sharing options...
rafaelamargo Posted December 30, 2014 Share Posted December 30, 2014 (edited) 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 December 30, 2014 by rafaelamargo (see edit history) 1 Link to comment Share on other sites More sharing options...
hachedocho Posted December 30, 2014 Author Share Posted December 30, 2014 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 More sharing options...
Recommended Posts