Jump to content

<RESOLU>Modifier type miniature pour sous-catégorie


Recommended Posts

Bonjour

mon problème concerne les photos des sous-catégorie.

je voudrais modifier le type de miniature utiliser par les sous-catégories, mais je n'arrive pas a retrouver quel fichier je dois modifier.

j'ai créer un nouveau type de miniature que j'ai appelé "souscategorie" et je voudrais le mettre a la place de celui actuellement qui est "medium"

 

merci de m'aider

cordialement

 

Seb

 

ps: version 1.4.3 utilisé

Link to comment
Share on other sites

Dans ton category.tpl a la ligne 65 (dans le fichier d'origine PS 1.4)

tu remplace:

<li>
				<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}">
					{if $subcategory.id_image}
						<img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium')}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
					{else}
						<img src="{$img_cat_dir}default-medium.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
					{/if}
				</a>
				<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}">{$subcategory.name|escape:'htmlall':'UTF-8'}</a>
			</li>

par:

<li>
				<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}">
					{if $subcategory.id_image}
						<img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'souscategorie')}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
					{else}
						<img src="{$img_cat_dir}default-souscategorie.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
					{/if}
				</a>
				<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}">{$subcategory.name|escape:'htmlall':'UTF-8'}</a>
			</li>

 

ça devrait fonctionner (la ou il y a ecrit "medium" tu met "souscategorie"

Link to comment
Share on other sites

  • 4 weeks later...

Salut,

 

Je cherche à faire la même chose donc j'ai créé un nouveau groupe de miniature appelé "souscategorie" aussi. Je mets une taille de 225 x 85. Je modifie tous les medium par souscategorie.

 

Et là, rien ne change. une petite idée, j'ai oublié qql chose ?

 

 

merci les gas

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...