Jump to content

Miniaturas en subcategorías


Recommended Posts

Hola a tod@s

 

Soy totalmente nuevo aquí, así que pido disculpas de antemano si no he creado el post en el sítio adecuado, el tema es que estoy configurando mi tienda para el próximo lanzamiento y he visto que hay varios temas que ofrecen una vista de la subcategoría con unas imágenes en miniatura, yo estoy usando el tema Colorio Red que me ha suministrado mi hosting, pero no tiene esa posibilidad o al menos no lo veo ¿alguien me podría decir si se pueden poner de alguna forma?

 

Muchísimas gracias de antemano

 

Saludos

Link to comment
Share on other sites

Hola a tod@s

 

Soy totalmente nuevo aquí, así que pido disculpas de antemano si no he creado el post en el sítio adecuado, el tema es que estoy configurando mi tienda para el próximo lanzamiento y he visto que hay varios temas que ofrecen una vista de la subcategoría con unas imágenes en miniatura, yo estoy usando el tema Colorio Red que me ha suministrado mi hosting, pero no tiene esa posibilidad o al menos no lo veo ¿alguien me podría decir si se pueden poner de alguna forma?

 

Muchísimas gracias de antemano

 

Saludos

 

¿Puede usted, colocar la url de su tienda, para que la comunidad pueda chequear y ver el problema en directo?

Link to comment
Share on other sites

De momento no está online, pero os paso la url donde hago las pruebas y así podéis ver en concreto lo que os digo.

 

http://www.7pk2.com/tienda/5-camisetas

 

Saludos y gracias.

 

Estimado Jose.M,

 

Pruebe usted lo siguiente, vaya al fichero:

 

/themes/coloriored/category.tpl

 

Borre el contenido de tal fichero, y deja este contenido dentro de tal fichero:

 

{*
* 2007-2012 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <[email protected]>
*  @copyright  2007-2012 PrestaShop SA
*  @version  Release: $Revision: 14008 $
*  @license	http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*}

{include file="$tpl_dir./breadcrumb.tpl"}
{include file="$tpl_dir./errors.tpl"}

{if isset($category)}
{if $category->id AND $category->active}

<h1>
{strip}
{$category->name|escape:'htmlall':'UTF-8'}
{if isset($categoryNameComplement)}
{$categoryNameComplement|escape:'htmlall':'UTF-8'}
{/if}
<span class="category-product-count">
{include file="$tpl_dir./category-count.tpl"}
</span>
{/strip}
</h1>

{if $scenes}
<!-- Scenes -->
{include file="$tpl_dir./scenes.tpl" scenes=$scenes}
{else}
<!-- Category image -->
{if $category->id_image}
<div class="align_center">
<img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category')}" alt="{$category->name|escape:'htmlall':'UTF-8'}" title="{$category->name|escape:'htmlall':'UTF-8'}" id="categoryImage" width="{$categorySize.width}" height="{$categorySize.height}" />
</div>
{/if}
{/if}
{if $category->description}
<div class="cat_desc">{$category->description}</div>
{/if}
{if isset($subcategories)}
<!-- Subcategories -->
<div id="subcategories">
<h3>{l s='Subcategories'}</h3>
<ul class="inline_list">
{foreach from=$subcategories item=subcategory}
<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><br />
<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}">{$subcategory.name|escape:'htmlall':'UTF-8'}</a>
</li>
{/foreach}
</ul>
<br class="clear"/>
</div>
{/if}

{if $products}
{include file="$tpl_dir./product-compare.tpl"}
{include file="$tpl_dir./product-sort.tpl"}
{include file="$tpl_dir./product-list.tpl" products=$products}
{include file="$tpl_dir./product-compare.tpl"}
{include file="$tpl_dir./pagination.tpl"}
{elseif !isset($subcategories)}
<p class="warning">{l s='There are no products in this category.'}</p>
{/if}
{elseif $category->id}
<p class="warning">{l s='This category is currently unavailable.'}</p>
{/if}
{/if}

 

Una vez echa la modificación, no se te olvide ir a la pestaña Preferencias/Rendimiento del panel de administración de su tienda y señalar Forzar Compilación -> SI, para que se apliquen los cambios.

 

Un Saludo.

Link to comment
Share on other sites

Bueno, pues prueba esto, en tu fichero el actual, busca esto:

 

 

 {if isset($subcategories)} <!-- Subcategories --> <div id="subcategories">  <h3>{l s='Subcategories'}</h3>  <ul class="inline_list">  {foreach from=$subcategories item=subcategory}   <li> <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}">{$subcategory.name|escape:'htmlall':'UTF-8'}</a>   </li>  {/foreach}  </ul>  <br class="clear"/> </div> {/if}

 

 

Y déjalo así:

 

 

{if isset($subcategories)}<!-- Subcategories --><div id="subcategories"><h3>{l s='Subcategories'}</h3><ul class="inline_list">{foreach from=$subcategories item=subcategory}<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><br /><a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}">{$subcategory.name|escape:'htmlall':'UTF-8'}</a></li>{/foreach}</ul><br class="clear"/></div>{/if}

 

Link to comment
Share on other sites

De cine!!!!! ahora me salen las esperadas miniaturas!!!!! pero me aparecen dos iconos rojos que iran en el css, supongo y el texto que también tendré que ajustarlo para que salga debajo de la imágen, pero una pregunta más, ¿las imágenes las toma de los diseños que he hecho en las entradas de cada subcategoría? ¿hay forma de especificarle que tome la de un producto u otra que sea del tamaño de la miniatura?

 

Muchísimas gracias, estoy aprendiendo una pasada....

Link to comment
Share on other sites

Hola a todos, me he quedado con el tema de la foto en miniatura ya que toma por defecto la que diseño para la subcategoría, si me podeis añadir alguna info más perfecto :) y sino ¿como doy el tema por cerrado?

 

Muchísimas gracias por todo sois unos máquinas :)

Link to comment
Share on other sites

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