Jump to content

Problème de MAJ sur module thème mobile by Prestashop


lucho84

Recommended Posts

Bonsoir,

 

J'ai un site en PS 1.4.1.0 sur lequel j'ai installé le thème mobile développé par Prestashop http://addons.prestashop.com/fr/mobile/6165-prestashop-theme-mobile-14.html

 

Ce thème fonctionne sans aucun problème mais je souhaite redimenssionner l'image dans le home featured j'ai donc bien identifié le code mais à l'execution du site sur mon iPhone, ou Google "avec l'emulation iPhone 5" l'image ne change pas de taille et le code est toujours celui d'origine.

 

Voici un exemple, je souhaite modifier cette ligne dans le homefeatured.tpl du module présent dans le module du thème mobile

<div id="featured-products_block_center_mobile" style="text-align: center;">
{if isset($products) && $products}
	<div id="slider_home" style="padding: 0; margin: 10px 0 0 0;">
		<ul>
		{foreach from=$products item=product name=homeFeaturedProducts}
			<li {if !$smarty.foreach.homeFeaturedProducts.first}style="display: none;"{/if}>
				<a{if isset($product.link)} href="{$product.link}"{/if} title="{$product.name|escape:html:'UTF-8'}" style="text-decoration: none;">
					<img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'large')}" alt="{$product.name|escape:html:'UTF-8'}" style="border-radius: 15px; width: 100%" />
				</a>
				<p style="position: relative; bottom: 25px; background: black; opacity: 0.80; height: 25px; line-height: 25px; color: white; border-radius: 15px; width: 99%;">
					{$product.name|escape:html:'UTF-8'}
					{if isset($product.show_price ) && $product.show_price && !isset($restricted_country_mode) && !$PS_CATALOG_MODE} - <span class="price">{if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if}</span>
					{/if}
				</p>
			</li>
		{/foreach}
		</ul>
	</div>

je modifi le width de la balise img 100% -> 70%, en direct sur google, la maj se fait mais après avoir uploader le tpl à jour et vider le cache smarty, c'est toujours le code avec 100% qui s'affiche...

 

Je ne comprends absolument pas d'où vient le problème! Auriez vous une idée?

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...