Jump to content

(solucionado) dudas con prestashop


Recommended Posts

tengo unas dudas:

 

1. para que el carro se vea como en la imagen que e puesto como se hace? hay que configurar algún fichero o es un modulo?

 

2. para quitar o modificar lo que se ve en la segunda imagen que es información sobre nuestra tienda que debo de hacer? principalmente prefiero borrarlo

post-513977-0-17261000-1365101779_thumb.jpg

post-513977-0-32042800-1365101780_thumb.gif

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

tengo unas dudas:

 

1. para que el carro se vea como en la imagen que e puesto como se hace? hay que configurar algún fichero o es un modulo?

 

2. para quitar o modificar lo que se ve en la segunda imagen que es información sobre nuestra tienda que debo de hacer? principalmente prefiero borrarlo

 

No indicas ni direccion de tu tienda, ni version exacta de prestashop que usas....

 

Te respondere en en base a Prestashop 1.5

 

Cambiar informacion del mapa, en base a tu tienda, Pestaña "Preferencias -> Contactos y Tiendas"

 

-----

 

Quitar carrito de la cabecera: http://victor-rodena...prestashop-1-5/

 

Colocar carrito en el lateral derecho o izquierdo de tu tienda: http://victor-rodena...prestashop-1-5/

Link to comment
Share on other sites

gracias por la información me ha servido mucho, ya aprovecho y pregunta otras dos dudas que tengo,

 

1. cuando activo el modulo de mostrar los productos de la misma categoría tengo un problema por que sale un texto raro que no se a que pertenece, os muestro en la imagen lo que me sale, ¿ como puedo solucionar esto?

 

2. como me muestro en la segunda imagen me gustaría cambiar donde pone marcas y poner editoriales, ¿como se hace?

post-513977-0-04129000-1365189604_thumb.jpg

post-513977-0-06836400-1365189610_thumb.jpg

Link to comment
Share on other sites

gracias por la información me ha servido mucho, ya aprovecho y pregunta otras dos dudas que tengo,

 

1. cuando activo el modulo de mostrar los productos de la misma categoría tengo un problema por que sale un texto raro que no se a que pertenece, os muestro en la imagen lo que me sale, ¿ como puedo solucionar esto?

 

2. como me muestro en la segunda imagen me gustaría cambiar donde pone marcas y poner editoriales, ¿como se hace?

 

Recuerda que las normas del foro indican, que se debe preguntar una duda por tema, no todas las dudas en el mismo tema.

 

Respecto a la pregunta 1:

 

El fichero:

 

productscategory.tpl

 

Dejalo asi:

 

{*
* 2007-2013 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-2013 PrestaShop SA
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*}
{if count($categoryProducts) > 0 && $categoryProducts !== false}
<div class="clearfix blockproductscategory">
<h2 class="productscategory_h2">{$categoryProducts|@count} {l s='other products in the same category:' mod='productscategory'}</h2>
<div id="{if count($categoryProducts) > 5}productscategory{else}productscategory_noscroll{/if}">
{if count($categoryProducts) > 5}<a id="productscategory_scroll_left" title="{l s='Previous' mod='productscategory'}" href="javascript:{ldelim}{rdelim}">{l s='Previous' mod='productscategory'}</a>{/if}
<div id="productscategory_list">
 <ul {if count($categoryProducts) > 5}style="width: {math equation="width * nbImages" width=107 nbImages=$categoryProducts|@count}px"{/if}>
  {foreach from=$categoryProducts item='categoryProduct' name=categoryProduct}
  <li {if count($categoryProducts) < 6}style="width:60px"{/if}>
   <a href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)}" class="lnk_img" title="{$categoryProduct.name|htmlspecialchars}"><img src="{$link->getImageLink($categoryProduct.link_rewrite, $categoryProduct.id_image, 'medium_default')}" alt="{$categoryProduct.name|htmlspecialchars}" /></a>
   <p class="product_name">
 <a href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)}" title="{$categoryProduct.name|htmlspecialchars}">{$categoryProduct.name|truncate:14:'...'|escape:'htmlall':'UTF-8'}</a>
   </p>
   {if $ProdDisplayPrice AND $categoryProduct.show_price == 1 AND !isset($restricted_country_mode) AND !$PS_CATALOG_MODE}
   <p class="price_display">
 <span class="price">{convertPrice price=$categoryProduct.displayed_price}</span>
   </p>
   {else}
   <br />
   {/if}
  </li>
  {/foreach}
 </ul>
</div>
{if count($categoryProducts) > 5}<a id="productscategory_scroll_right" title="{l s='Next' mod='productscategory'}" href="javascript:{ldelim}{rdelim}">{l s='Next' mod='productscategory'}</a>{/if}
</div>
<script type="text/javascript">
 $('#productscategory_list').trigger('goto', [{$middlePosition}-3]);
</script>
</div>
{/if}

 

Busca esto:

 

Y dejalo asi:

 

 <ul {if count($categoryProducts) > 5}style="width: {math equation="width * nbImages" width=107 nbImages=$categoryProducts|@count}px"{/if}>

 

Respecto a la pregunta 2: Pestaña Localizacion -> Traducciones -> Traducciones de los módulos

Link to comment
Share on other sites

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