Jump to content

(Solucionado) Disposicion de categorias


Lire

Recommended Posts

Hola de nuevo, me gustaria preguntar si podria cambiar la disposicion de una categoria, dicha disposicion solo me gustaria en una categoria de las 6 que tengo en mi tienda.

 

 

Mi tienda visualiza las categorias asi:

categorias2.jpg

 

Lo que e visto en otras tiendas prestashop es que visualizan los productos asi:

 

categoriasp.jpg

 

Como digo esto solo me gustaria en una categoria, las demas si que me interesa como salen.

Alguien me prodiar iluminar?

Edited by lirelok (see edit history)
Link to comment
Share on other sites

Hola de nuevo, me gustaria preguntar si podria cambiar la disposicion de una categoria, dicha disposicion solo me gustaria en una categoria de las 6 que tengo en mi tienda.

 

 

Mi tienda visualiza las categorias asi:

categorias2.jpg

 

Lo que e visto en otras tiendas prestashop es que visualizan los productos asi:

 

categoriasp.jpg

 

Como digo esto solo me gustaria en una categoria, las demas si que me interesa como salen.

Alguien me prodiar iluminar?

 

Puedes hacer una condicional especifica para esa categoría haciendo un:

 

{if  $smarty.get.id_category==x}{/if}

Link to comment
Share on other sites

Hola statictic, estoy probando esto que me dices, y e modificado el category.tpl quedando asi:

 

<!-- Subcategories -->

<div id="subcategories">

<h3>{l s='Subcategories'}</h3>

<ul class="inline_list">

{foreach from=$subcategories item=subcategory}

<li class="{if $smarty.get.id_category == 67}seeds {/if}">

<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}" class="img">

{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}

 

Esta correcto? saludos

Link to comment
Share on other sites

oki, segundo paso modificado, modificando category.css, quedando asi:

 

SUB CATEGORIES

************************************************************************************************ */

li.seeds { width: 80px; float: left; }

#subcategories {margin-top:15px}

#subcategories h3 {

padding:14px 12px;

font-size:13px;

color:#fff;

text-transform:uppercase;

text-shadow:0 1px 0 #666;

background:url(../img/bg_table_th.png) repeat-x 0 0 #66cc33

}

 

 

Pareze que funciona pk se ve diferente las subcategorias indicadas, ahora voy a mirar el resto.

Link to comment
Share on other sites

hola de nuevo, tambien e eliminado la descripcion como indicas, solo me faltaria ir tocando como dices el css.

 

Antes veo un fallo y esque me han cambiado todas las categorias y subcategorias de igual forma, algo debo haver hecho mal

Link to comment
Share on other sites

mmmm me da que no ,no? sigue igual

 

te pongo parte del codigo:

 

/* ************************************************************************************************

SUB CATEGORIES

************************************************************************************************ */

li.seeds { width: 80px; float: left; }

li.seeds .img { ... }

li.seeds .cart_name { ... }

#subcategories {margin-top:15px}

#subcategories h3 {

padding:14px 12px;

font-size:13px;

color:#fff;

text-transform:uppercase;

text-shadow:0 1px 0 #666;

background:url(../img/bg_table_th.png) repeat-x 0 0 #66cc33

}

Link to comment
Share on other sites

lo cambie de esta manera:

 

li.seeds { width: 80px; float: left; }

li.seeds {

float: left;

height: 120px;

margin-left: 5px;

margin-right: 5px;

text-align: center;

width: 97px;

}

li.seeds .img {

float: none !important;

margin: 0 !important;

}

#subcategories {margin-top:15px}

#subcategories h3 {

padding:14px 12px;

font-size:13px;

color:#fff;

text-transform:uppercase;

text-shadow:0 1px 0 #666;

background:url(../img/bg_table_th.png) repeat-x 0 0 #66cc33

}

Link to comment
Share on other sites

osea que lo deje asi? te pongo todo la parte de subcategoria, por si hay algo que influña mas.

 

/* ************************************************************************************************

SUB CATEGORIES

************************************************************************************************ */

li.seeds {

float: left;

height: 120px;

margin-left: 5px;

margin-right: 5px;

text-align: center;

width: 97px;

}

li.seeds .img {

float: none !important;

margin: 0 !important;

}

#subcategories {margin-top:15px}

#subcategories h3 {

padding:14px 12px;

font-size:13px;

color:#fff;

text-transform:uppercase;

text-shadow:0 1px 0 #666;

background:url(../img/bg_table_th.png) repeat-x 0 0 #66cc33

}

 

.inline_list {

list-style-type:none;

margin-top:10px;

}

.inline_list li {

padding:4px 0;

border-bottom:1px dotted #ccc

}

.inline_list li .img {

float:left;

margin-right:15px

}

.inline_list li img {

border:1px solid #ffffff

}

.inline_list li .cat_name {

font-weight:bold;

font-weight:13px

}

 

Link to comment
Share on other sites

/* ************************************************************************************************

SUB CATEGORIES

************************************************************************************************ */

li.seeds {

float: left;

height: 120px;

margin-left: 5px;

margin-right: 5px;

text-align: center;

width: 97px;

}

li.seeds .img {

li.seeds .cat_name {

display: inline-block;

}

float: none !important;

margin: 0 !important;

}

 

asi esta.

Link to comment
Share on other sites

Hala nadie, yo ojala pudiera explicarlo, pero si no es por statictic chungo yo lo hubiera hecho.

 

Si puedo ayudar a statictic en algo , aunque sea para pasar mi codigo de muestra o imagenes o lo que sea que pueda hacer , no duden en pedirmelo.

Link to comment
Share on other sites

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