TheWolf Posted March 13, 2015 Share Posted March 13, 2015 (edited) Hi all, I recently installed the Other Products in Category module, and when the product page loads i get a number where a heading titled: "other products in the same category:" should appear. i'm attaching the productscategory.tpl code from my site: {if count($categoryProducts) > 0 && $categoryProducts !== false} <section class="page-product-box blockproductscategory"> <h3 class="productscategory_h3 page-product-heading">{$categoryProducts|@count} {l s='other products in the same category:' mod='productscategory'}</h3> <div id="productscategory_list" class="clearfix"> <ul id="bxslider1" class="bxslider clearfix"> {foreach from=$categoryProducts item='categoryProduct' name=categoryProduct} <li class="product-box item"> <a href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)}" class="lnk_img product-image" title="{$categoryProduct.name|htmlspecialchars}"><img src="{$link->getImageLink($categoryProduct.link_rewrite, $categoryProduct.id_image, 'home_default')|escape:'html':'UTF-8'}" alt="{$categoryProduct.name|htmlspecialchars}" /></a> <h5 class="product-name"> <a href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)|escape:'html':'UTF-8'}" title="{$categoryProduct.name|htmlspecialchars}">{$categoryProduct.name|truncate:120:'...'|escape:'html':'UTF-8'}</a> </h5> {if $ProdDisplayPrice && $categoryProduct.show_price == 1 && !isset($restricted_country_mode) && !$PS_CATALOG_MODE} <p class="price_display"> {if isset($categoryProduct.specific_prices) && $categoryProduct.specific_prices && ($categoryProduct.displayed_price|number_format:2 !== $categoryProduct.price_without_reduction|number_format:2)} <span class="price special-price">{convertPrice price=$categoryProduct.displayed_price}</span> {if $categoryProduct.specific_prices.reduction && $categoryProduct.specific_prices.reduction_type == 'percentage'} <span class="price-percent-reduction small">-{$categoryProduct.specific_prices.reduction * 100}%</span> {/if} <span class="old-price">{displayWtPrice p=$categoryProduct.price_without_reduction}</span> {else} <span class="price">{convertPrice price=$categoryProduct.displayed_price}</span> {/if} </p> {else} <br /> {/if} </li> {/foreach} </ul> </div> </section> {/if} I don't know if it have something to do with it but yesterday I implemented code from this tutorial: http://mypresta.eu/en/art/prestashop-16/product-tabs.html Your help is much appreciated! this is what i see in my product page: http://screencast.com/t/nGtMTSSLaKK Edited March 13, 2015 by TheWolf (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now