Fergus Posted June 25, 2009 Share Posted June 25, 2009 Hola, el problema que tengo es que si activo desde el back URL amigables, no muestra las miniaturas de los productos. publicados. Link to comment Share on other sites More sharing options...
Fergus Posted July 6, 2009 Author Share Posted July 6, 2009 hice una pequeña modificación en el código del archivo admin/tabs/Link.php linea 105 public function getImageLink($name, $ids, $type = null) { return ($this->allow == 1) ? (__PS_BASE_URI__.$ids.($type ? '-'.$type : '').'/'.$name.'.jpg') : (_THEME_PROD_DIR_.$ids.($type ? '-'.$type : '').'.jpg'); } por : public function getImageLink($name, $ids, $type = null) { return ($this->allow == 1) ? (_THEME_PROD_DIR_.$ids.($type ? '-'.$type : '').'.jpg') : (_THEME_PROD_DIR_.$ids.($type ? '-'.$type : '').'.jpg'); } con esto me solucionó el problema. Link to comment Share on other sites More sharing options...
Recommended Posts