juanrojas Posted July 17, 2015 Share Posted July 17, 2015 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) Link to comment Share on other sites More sharing options...
ventura Posted July 17, 2015 Share Posted July 17, 2015 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 More sharing options...
juanrojas Posted July 17, 2015 Author Share Posted July 17, 2015 Perfecto Link to comment Share on other sites More sharing options...
Recommended Posts