Jump to content

blockbestsellers - jméno produktu pod obrázkem


yuriix

Recommended Posts

 

 <h5><a href="{$product.link}" title="{$product.name|truncate:32:'...'|escape:'htmlall':'UTF-8'}">{$product.name|truncate:27:'...'|escape:'htmlall':'UTF-8'}</a></h5>

 

Díky za radu a mohl by jsi mi ukázat celé blockbestsellers.tpl, případně do které line to vložit?... :)

 

MOje:

<!-- MODULE Block best sellers -->
<div id="best-sellers_block_right" class="block products_block">
<h4><a href="{$base_dir}best-sales.php">{l s='Top sellers' mod='blockbestsellers'}</a></h4>
<div class="block_content">
{if $best_sellers|@count > 0}
 <ul class="product_images">
  <li><a href="{$best_sellers.0.link}" title="{$best_sellers.0.legend}"><img src="{$link->getImageLink($best_sellers.0.link_rewrite, $best_sellers.0.id_image, 'medium')}" height="{$mediumSize.height}" width="{$mediumSize.width}" alt="{$best_sellers.0.legend}" /></a></li>
  {if $best_sellers|@count > 1}<li><a href="{$best_sellers.1.link}" title="{$best_sellers.1.legend}"><img src="{$link->getImageLink($best_sellers.1.link_rewrite, $best_sellers.1.id_image, 'medium')}" height="{$mediumSize.height}" width="{$mediumSize.width}" alt="{$best_sellers.1.legend}" /></a></li>{/if}
 </ul>

 <dl>
 {foreach from=$best_sellers item=product name=myLoop}
  <dt class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if}"><a href="{$product.link}" title="{$product.name|escape:'htmlall':'UTF-8'}">{$product.name|escape:'htmlall':'UTF-8'}</a>

  </dt>
 {/foreach}
 </dl>

 <p><a href="{$base_dir}best-sales.php" title="{l s='All best sellers' mod='blockbestsellers'}" class="button_large">{l s='All best sellers' mod='blockbestsellers'}</a></p>
{else}
 <p>{l s='No best sellers at this time' mod='blockbestsellers'}</p>
{/if}
</div>
</div>
<!-- /MODULE Block best sellers -->

 

A ještě jedna věc, nevíš pro se mi objevují jen 2 obrázky, když mám nastavené tři položky?

 

MOC Díky.

Link to comment
Share on other sites

Zkus toto:

 


<!-- MODULE Block best sellers -->
<div id="best-sellers_block_right" class="block products_block">
<h4><a href="{$base_dir}best-sales.php">{l s='Top sellers' mod='blockbestsellers'}</a></h4>
<div class="block_content">
{if $best_sellers|@count > 0}
 <ul class="product_images">
     <h5>
  <a href="{$best_sellers.0.link}" title="{$best_sellers.0.name|escape:htmlall:'UTF-8'}">{$best_sellers.0.name|escape:htmlall:'UTF-8'|truncate:30}</a>
 </h5>
  <li><a href="{$best_sellers.0.link}" title="{$best_sellers.0.legend}"><img src="{$link->getImageLink($best_sellers.0.link_rewrite, $best_sellers.0.id_image, 'medium')}" height="{$mediumSize.height}" width="{$mediumSize.width}" alt="{$best_sellers.0.legend}" /></a></li>
  {if $best_sellers|@count > 1}

  <li>
     <h5>
  <a href="{$best_sellers.1.link}" title="{$best_sellers.1.name|escape:htmlall:'UTF-8'}">{$best_sellers.1.name|escape:htmlall:'UTF-8'|truncate:30}</a>
 </h5>
  <a href="{$best_sellers.1.link}" title="{$best_sellers.1.legend}"><img src="{$link->getImageLink($best_sellers.1.link_rewrite, $best_sellers.1.id_image, 'medium')}" height="{$mediumSize.height}" width="{$mediumSize.width}" alt="{$best_sellers.1.legend}" /></a></li>{/if}
 </ul>

 <dl>
 {foreach from=$best_sellers item=product name=myLoop}
  <dt class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if}"><a href="{$product.link}" title="{$product.name|escape:'htmlall':'UTF-8'}">{$product.name|escape:'htmlall':'UTF-8'}</a>

  </dt>
 {/foreach}
 </dl>

 <p><a href="{$base_dir}best-sales.php" title="{l s='All best sellers' mod='blockbestsellers'}" class="button_large">{l s='All best sellers' mod='blockbestsellers'}</a></p>
{else}
 <p>{l s='No best sellers at this time' mod='blockbestsellers'}</p>
{/if}
</div>
</div>
<!-- /MODULE Block best sellers -->

Link to comment
Share on other sites

  {if $best_sellers|@count > 1}

  <li>
  <h5>
  <a href="{$best_sellers.1.link}" title="{$best_sellers.1.name|escape:htmlall:'UTF-8'}">{$best_sellers.1.name|escape:htmlall:'UTF-8'|truncate:30}</a>
 </h5>
  <a href="{$best_sellers.1.link}" title="{$best_sellers.1.legend}"><img src="{$link->getImageLink($best_sellers.1.link_rewrite, $best_sellers.1.id_image, 'medium')}" height="{$mediumSize.height}" width="{$mediumSize.width}" alt="{$best_sellers.1.legend}" /></a></li>{/if}
 </ul>

 

Tohle zkopíruj kolikrát potřebuješ, místo "1" doplň další číslo v pořadí.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...