Jump to content

Edit Featured Products style.


Recommended Posts

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 :

2r383dw.jpg

I want to look like :

2uy4sjt.jpg

What should I edit?

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

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

×
×
  • Create New...