leandrocore Posted May 3, 2014 Share Posted May 3, 2014 (edited) Alguem sabe como muda o tamanho das fotos? Já tentei em Preferências Imagens mas não mudou o tamanho Edited May 5, 2014 by leandrocore (see edit history) Link to comment Share on other sites More sharing options...
selectshop.at Posted May 3, 2014 Share Posted May 3, 2014 Veja com o firebug qual imagem o seu tema está usando, Standard é a imagem "home-default" (PS 1,5x e 1.6.x) Deleta o cache do seu browser, após que fez a alteracao. IMPORTANTE: Lembre-se que se for alterar o tamanho lá também vai alterar o tamanho das outras imagens que sao usadas por esta classe. Se quiser que qas imagens somente se adaptem para este módulo vai ter que criar uma classe para o módulo e alterar no código do módulo(homefeatured) para a nova classe. Outra coisa que poderá fazer problemas é que vai ter que alterar também o css, pois o tamanho da imagem lá apesar de nao estar definido estaticamente o espaco está reservado e vc. alterando o tamanho nao mais caberao tres/cinco imagens ao lado, acabando a desconfigurar toda a sua primeira página. Link to comment Share on other sites More sharing options...
leandrocore Posted May 3, 2014 Author Share Posted May 3, 2014 poderia me dizer onde altera no homefeatured procurei mais não achei Link to comment Share on other sites More sharing options...
selectshop.at Posted May 4, 2014 Share Posted May 4, 2014 (edited) Vc. altera o tamanho da imagem na aba preferencias -> imagens -> produtos -> home_default. Para o resto vai ter que mexer em alguns scripts. Se for trabalhar sem classe, entao simplesmente ensira o tamanho da imagem no homefeatured.php com o tamanho exato, ex: "><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'home_default')}" height="500" width="500" alt="{$product.name|escape:html:'UTF-8'}" em /themes/default/modules/homefeatured/homefeatured.tpl Edited May 4, 2014 by selectshop.at (see edit history) Link to comment Share on other sites More sharing options...
leandrocore Posted May 4, 2014 Author Share Posted May 4, 2014 obrigado pela resposta então no caso eu criei uma clase nova chamada paginainicial onde você falou no codigo eu mudei de home_default para paginainicial mais não funcionou Link to comment Share on other sites More sharing options...
selectshop.at Posted May 4, 2014 Share Posted May 4, 2014 (edited) deletou o smarty cache ? e browser cache -> F5. A classe que criou também criou nas imagens ? As imagens do produto já foram indexadas com esta nova classe e tamanho ? Edited May 4, 2014 by selectshop.at (see edit history) Link to comment Share on other sites More sharing options...
leandrocore Posted May 4, 2014 Author Share Posted May 4, 2014 sim deletei fiz assim Link to comment Share on other sites More sharing options...
selectshop.at Posted May 4, 2014 Share Posted May 4, 2014 Link para a sua loja ? Link to comment Share on other sites More sharing options...
leandrocore Posted May 4, 2014 Author Share Posted May 4, 2014 https://lucksstore.com/ Link to comment Share on other sites More sharing options...
selectshop.at Posted May 5, 2014 Share Posted May 5, 2014 Vc. está usando um tema próprio. Veja se o seu tema inclue os módulos com scripts próprios. Se sim entao vai ter que alterar o código em: /themes/SEUTEMA/modules/homefeatured/homefeatured.tpl Link to comment Share on other sites More sharing options...
CarlosC Posted May 5, 2014 Share Posted May 5, 2014 sim deletei fiz assim Altere a o tamanho da imagem no backoffice: Em: home_defaul de 124px por 124px para: home_defaul de 190px por 190px Faça regenerar da imagens da categoria (home_defaul) Cumps Link to comment Share on other sites More sharing options...
leandrocore Posted May 5, 2014 Author Share Posted May 5, 2014 (edited) Vc. está usando um tema próprio. Veja se o seu tema inclue os módulos com scripts próprios. Se sim entao vai ter que alterar o código em: /themes/SEUTEMA/modules/homefeatured/homefeatured.tpl Olá sim ele possui eu já havia feito a mudança <a href="{$product.link|escape:'html'}" title="{$product.name|escape:html:'UTF-8'}" class="product_image"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'paginainicial')|escape:'html'}" height="{$homeSize.height}" width="{$homeSize.width}" alt="{$product.name|escape:html:'UTF-8'}" />{if isset($product.new) && $product.new == 1}<span class="new">{l s='New' mod='homefeatured'}</span>{/if}</a> mas continua :/ @PrestaShop Addict Caso eu faça essa mudança como você falou irá aumenta o tamanho das fotos dos outros produtos nas paginas com isso irá buga o layout preciso apenas muda o tamanho das fotos em destaque Edited May 5, 2014 by leandrocore (see edit history) Link to comment Share on other sites More sharing options...
selectshop.at Posted May 5, 2014 Share Posted May 5, 2014 Alteracoes foram feitas com cache ligado ? Se fez entao deleta o smarty cache no seu back-office e o cache do seu browser (F5) Link to comment Share on other sites More sharing options...
leandrocore Posted May 5, 2014 Author Share Posted May 5, 2014 Alteracoes foram feitas com cache ligado ? Se fez entao deleta o smarty cache no seu back-office e o cache do seu browser (F5) Estava desligada fiz update do modulo e mudei tudo novamente na pasta themes em todos os layouts que encontrei e mudei na pasta modulos apos isso limpei cache mas continua com o tamanho grande Link to comment Share on other sites More sharing options...
CarlosC Posted May 5, 2014 Share Posted May 5, 2014 Boas, Qual é o tamanho que pretende nas imagens? Pode resolver o problema por CSS: #index #center_column div.products_block a.product_image img { height: 190px !important; width: 190px !important; } Altere para o tamnho pretendido e coloque no ficheiro global.css do seu tema (no fundo). Cumps Link to comment Share on other sites More sharing options...
leandrocore Posted May 5, 2014 Author Share Posted May 5, 2014 (edited) com a mudança dita acima ele quebro um pouco o layout mais não houve diferença no tamanho das imagem :/ -- edite -- Fazendo a mudança no ficheiro layouts.css neste local #index #center_column div.products_block a.product_image img{ width:150px !important; height:150px !important;} #editorial_block_center, #center_column .products_block{ margin-bottom:10px;} foi possível muda o tamanho da imagem obrigado aos users que ajudaram! tópico resolvido Edited May 5, 2014 by leandrocore (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now