ivars91 Posted September 17, 2013 Share Posted September 17, 2013 (edited) Buenas, Por cosas de mi sector, no me combiene tener el botón añadir al carrito antes de que se entre al producto. Por ello me gustaría cambiar el "añadir al carrito" por un "ver producto" o "ver más" de los listados de producto. Siguiendo el tutorial de como eliminar el botón: http://victor-rodenas.com/2012/11/13/guia-eliminar-el-boton-de-anadir-al-carrito-en-los-listados-de-productos-en-prestashop-1-5/ He conseguido eliminarlo. Pero ahora como le puedo poner un icono de ver producto? Gracias. Edited September 17, 2013 by ivars91 (see edit history) Link to comment Share on other sites More sharing options...
nadie Posted September 17, 2013 Share Posted September 17, 2013 Supongo que en el product-list.tpl, habras cambiado esto: {if ($product.id_product_attribute == 0 || (isset($add_prod_display) && ($add_prod_display == 1))) && $product.available_for_order && !isset($restricted_country_mode) && $product.minimal_quantity <= 1 && $product.customizable != 2 && !$PS_CATALOG_MODE} {if ($product.allow_oosp || $product.quantity > 0)} {if isset($static_token)} <a class="button ajax_add_to_cart_button exclusive" rel="ajax_id_product_{$product.id_product|intval}" href="{$link->getPageLink('cart',false, NULL, "add=1&id_product={$product.id_product|intval}&token={$static_token}", false)|escape:'html'}" title="{l s='Add to cart'}"><span></span>{l s='Add to cart'}</a> {else} <a class="button ajax_add_to_cart_button exclusive" rel="ajax_id_product_{$product.id_product|intval}" href="{$link->getPageLink('cart',false, NULL, "add=1&id_product={$product.id_product|intval}", false)|escape:'html'}" title="{l s='Add to cart'}"><span></span>{l s='Add to cart'}</a> {/if} {else} <span class="exclusive"><span></span>{l s='Add to cart'}</span><br /> {/if} {/if} por esto {* {if ($product.id_product_attribute == 0 || (isset($add_prod_display) && ($add_prod_display == 1))) && $product.available_for_order && !isset($restricted_country_mode) && $product.minimal_quantity <= 1 && $product.customizable != 2 && !$PS_CATALOG_MODE} {if ($product.allow_oosp || $product.quantity > 0)} {if isset($static_token)} <a class="button ajax_add_to_cart_button exclusive" rel="ajax_id_product_{$product.id_product|intval}" href="{$link->getPageLink('cart',false, NULL, "add=1&id_product={$product.id_product|intval}&token={$static_token}", false)|escape:'html'}" title="{l s='Add to cart'}"><span></span>{l s='Add to cart'}</a> {else} <a class="button ajax_add_to_cart_button exclusive" rel="ajax_id_product_{$product.id_product|intval}" href="{$link->getPageLink('cart',false, NULL, "add=1&id_product={$product.id_product|intval}", false)|escape:'html'}" title="{l s='Add to cart'}"><span></span>{l s='Add to cart'}</a> {/if} {else} <span class="exclusive"><span></span>{l s='Add to cart'}</span><br /> {/if} {/if} *} Pues justo debajo si te fijas, tienes esto: <a class="button lnk_view exclusive" href="{$product.link|escape:'htmlall':'UTF-8'}" title="{l s='View'}">{l s='View'}</a> dejalo asi: <a class="button exclusive" href="{$product.link|escape:'htmlall':'UTF-8'}" title="{l s='View'}">{l s='View'}</a> Link to comment Share on other sites More sharing options...
ivars91 Posted September 17, 2013 Author Share Posted September 17, 2013 Realmente lo que hice fue comentar este cacho de código: <!-- {if $product.id_product_attribute != 0 && (isset($add_prod_display) && ($add_prod_display != 1))} <a class="button lnk_view exclusive" href="{$product.link|escape:'htmlall':'UTF-8'}" title="{l s='View'}">{l s='View'}</a> {elseif $product.available_for_order && !isset($restricted_country_mode) && $product.minimal_quantity <= 1 && $product.customizable != 2 && !$PS_CATALOG_MODE} {if ($product.allow_oosp || $product.quantity > 0)} {if isset($static_token)} <a class="button ajax_add_to_cart_button exclusive" rel="ajax_id_product_{$product.id_product|intval}" href="{$link->getPageLink('cart',false, NULL, "add&id_product={$product.id_product|intval}&token={$static_token}", false)}" title="{l s='Add to cart'}">{l s='Add to cart'}</a> {else} <a class="button ajax_add_to_cart_button exclusive" rel="ajax_id_product_{$product.id_product|intval}" href="{$link->getPageLink('cart',false, NULL, "add&id_product={$product.id_product|intval}", false)}" title="{l s='Add to cart'}">{l s='Add to cart'}</a> {/if} {else} <span class="exclusive" >{l s='Add to cart'}</span> {/if} --> Pero si cambio eso, está dentro la parte comentada. ¿Que podría hacer? www.latienadelapicultor.com Muchas gracias. Link to comment Share on other sites More sharing options...
nadie Posted September 17, 2013 Share Posted September 17, 2013 El codigo mejor comentarlo en el con: {* *} que con <!-- --> El codigo del boton "ver" sino lo tienes en tu plantilla, logicamente lo agregas debajo del comentario, no dentro. xD Link to comment Share on other sites More sharing options...
nadie Posted September 17, 2013 Share Posted September 17, 2013 Estimado ivars91, Estoy muy preocupado por usted. ¿Sigue usted ahí? Link to comment Share on other sites More sharing options...
nadie Posted September 17, 2013 Share Posted September 17, 2013 Vamos que añadas esto: <a class="button exclusive" href="{$product.link|escape:'htmlall':'UTF-8'}" title="{l s='View'}">{l s='View'}</a> debajo de lo que has comentado. (Fuera del comentario) Link to comment Share on other sites More sharing options...
ivars91 Posted September 17, 2013 Author Share Posted September 17, 2013 Disculpa nadie, no me había llegado las notificaciones. Voy a probarlo. Muchas gracias. Link to comment Share on other sites More sharing options...
ivars91 Posted September 17, 2013 Author Share Posted September 17, 2013 Que grande! ahora si! Gracias de nuevo. Ahora lo cambio el tema y pongo solucionado. Link to comment Share on other sites More sharing options...
nadie Posted September 17, 2013 Share Posted September 17, 2013 Que grande! ahora si! Gracias de nuevo. Ahora lo cambio el tema y pongo solucionado. Un placer ayudarte y servirte! Un saludo y recuerda que estaremos en el foro, para guiarte por este mundo oscuro y tenebroso. PD: Acabo de ver que acabas de añadir la palabra "Solucionado" al título, por lo que ahora ya puedo cerrar el tema. Saludos, Link to comment Share on other sites More sharing options...
Recommended Posts