estudioalfa2 Posted December 1, 2014 Share Posted December 1, 2014 Hola, Me quiere sonar que hace un tiempo hice que un módulo en particular no utilizase cache. Estoy intentando conseguirlo de nuevo, pero por más que busco no encuentro solución. ¿Os suena a alguno de vosotros como hacerlo? ¡Saludos y gracias por adelantado! Link to comment Share on other sites More sharing options...
nadie Posted December 1, 2014 Share Posted December 1, 2014 Por ejemplo, imaginemos que usas el blockadvertising y tenemos este codigo: public function hookRightColumn($params) { if (!$this->isCached('blockadvertising.tpl', $this->getCacheId())) $this->smarty->assign( array( 'image' => $this->context->link->protocol_content.$this->adv_img, 'adv_link' => $this->adv_link, 'adv_title' => $this->adv_title, ) ); return $this->display(__FILE__, 'blockadvertising.tpl', $this->getCacheId()); } Creo que si lo dejamos asi: public function hookRightColumn($params) { $this->smarty->assign( array( 'image' => $this->context->link->protocol_content.$this->adv_img, 'adv_link' => $this->adv_link, 'adv_title' => $this->adv_title, ) ); return $this->display(__FILE__, 'blockadvertising.tpl'); } Trabajariamos sin la cache de smarty en ese modulo. Ahora mismo no estoy seguro.., porque estoy en el movil... Link to comment Share on other sites More sharing options...
estudioalfa2 Posted January 8, 2015 Author Share Posted January 8, 2015 Muchas gracias por tu ayuda y disculpas por el retraso en contestar Link to comment Share on other sites More sharing options...
nadie Posted January 8, 2015 Share Posted January 8, 2015 Muchas gracias por tu ayuda y disculpas por el retraso en contestar Entonces ¿Ha funcionado? En caso de que haya funcionado, no se te olvide añadir la palabra "Solucionado" al título del tema: http://www.prestashop.com/forums/topic/269515-solucionado-%C2%BFcomo-poner-la-palabra-solucionado-en-el-titulo-del-tema/ Saludos, Link to comment Share on other sites More sharing options...
Recommended Posts