Jump to content

Recommended Posts

Hola Tengo un sitio prestashop 1.6 y lo que busco es hacer la imagen del producto mas grande, hablo de la imagen que se ve cuando el usuario pica en "ver mas grande" he intentado con thickbox_default y regenerando pero por allí no funciona. busco que la imagen salga en grandes dimensiones.

 

 como la imagen que adjunto (no importa que la imagen quede con scroll, lo que busco es que sea muy grande)

 

 

post-721044-0-60890900-1437121471_thumb.jpg

Link to comment
Share on other sites

Prueba a hacer lo siguiente.

En el archivo:

\themes\tu_tema\js\product.js

busca esta parte

if (typeof(contentOnly) != 'undefined' && !contentOnly)
{
if (!!$.prototype.fancybox)
$('li:visible .fancybox, .fancybox.shown').fancybox({
'hideOnContentClick': true,
'openEffect'	: 'elastic',
'closeEffect'	: 'elastic'
});
}

y lo sustituyes por esto

if (!!$.prototype.fancybox)
$('li:visible .fancybox, .fancybox.shown').fancybox({
'hideOnContentClick': true,
'fitToView'   : false,
'autoSize'    : false,
'openEffect'	: 'elastic',
'closeEffect'	: 'elastic'
});
}
Link to comment
Share on other sites

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