Jump to content

[SOLUCIONADO] No se muestra los thumbnails


Fergus

Recommended Posts

  • 2 weeks later...

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

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