aquakks Posted January 24, 2014 Share Posted January 24, 2014 (edited) Hi, I need your help. I edit Featured Producs module. I add button "add to card" and set three product per row but i can't edit position of title, description, price etc. (as the images) My featured products looks like :I want to look like :What should I edit? Edited January 24, 2014 by aquakks (see edit history) Link to comment Share on other sites More sharing options...
NemoPS Posted January 25, 2014 Share Posted January 25, 2014 You have to change homefeatured.tpl located in themes/default/modules/homefeatured Link to comment Share on other sites More sharing options...
vekia Posted January 25, 2014 Share Posted January 25, 2014 it's a duplicated topic from polish section: http://www.prestashop.com/forums/topic/303987-edycja-pozycji-polecanych-produkt%C3%B3w/?do=findComment&comment=1538305 and it's almost solved <a href="{$product.link|escape:'html'}" title="{$product.name|escape:html:'UTF-8'}" class="product_image"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'home_default')|escape:'html'}" height="{$homeSize.height}" width="{$homeSize.width}" alt="{$product.name|escape:html:'UTF-8'}" />{if isset($product.new) && $product.new == 1}<span class="new">{l s='New' mod='homefeatured'}</span>{/if}</a> <h5 class="s_title_block"><a href="{$product.link|escape:'html'}" title="{$product.name|truncate:50:'...'|escape:'htmlall':'UTF-8'}">{$product.name|truncate:35:'...'|escape:'htmlall':'UTF-8'}</a></h5> change order of h5 and <a href> to: <h5 class="s_title_block"><a href="{$product.link|escape:'html'}" title="{$product.name|truncate:50:'...'|escape:'htmlall':'UTF-8'}">{$product.name|truncate:35:'...'|escape:'htmlall':'UTF-8'}</a></h5><a href="{$product.link|escape:'html'}" title="{$product.name|escape:html:'UTF-8'}" class="product_image"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'home_default')|escape:'html'}" height="{$homeSize.height}" width="{$homeSize.width}" alt="{$product.name|escape:html:'UTF-8'}" />{if isset($product.new) && $product.new == 1}<span class="new">{l s='New' mod='homefeatured'}</span>{/if}</a> Link to comment Share on other sites More sharing options...
Recommended Posts