MónicaGZ Posted January 16, 2014 Share Posted January 16, 2014 (edited) Hola! En el módulo productos de la misma categoria (productscategory) tengo puesto un botón que pone "ver" que en teoría debería llevar hasta la página del producto, pero el link no funciona. No da ningún error, simplemente te actualiza la página en la que estás, sin redirigir a ningún sitio. Os dejo el productscategory.tpl por si podéis ver que me falta. {* * 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: 8337 $ * @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} <a class="button" href="{$product.link|escape:'htmlall':'UTF-8'}" title="{l s='Ver'}">{l s='Ver'}</a> </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} ¡¡Gracias por la ayuda!! Edited January 17, 2014 by MónicaGZ (see edit history) Link to comment Share on other sites More sharing options...
nadie Posted January 16, 2014 Share Posted January 16, 2014 Botón Ver en módulo "Productos de la misma categoría: Código: <a class="button lnk_view" href="{$categoryProduct.link|escape:'htmlall':'UTF-8'}" title="{l s='View' mod='productscategory'}">{l s='View' mod='productscategory'}</a> Link to comment Share on other sites More sharing options...
MónicaGZ Posted January 17, 2014 Author Share Posted January 17, 2014 Perfecto como siempre Nadie. Muchísimas gracias. Lo doy por solucionado Link to comment Share on other sites More sharing options...
nadie Posted January 17, 2014 Share Posted January 17, 2014 Perfecto como siempre Nadie. Muchísimas gracias. Lo doy por solucionado Un placer ayudarte y servirte ! PD: Como he visto que has añadido la palabra "Solucionado" en el titulo del tema, procedo a cerrar el tema. Saludos, Link to comment Share on other sites More sharing options...
Recommended Posts