Jump to content

nascondere numeratore prodotti


ferdinando1954

Recommended Posts

Buongiorno a tutta la comunità,qualcuno nel forum saprebbe come nascondere il numeratore prodotti presente in ogni categoria?Esempio:categoria film e dvd in questa categoria ci sono 200 prodotti.Parlo del template prestashop di base del pacchetto 1.6

Praticamente non voglio chè sia visibile dal numeratore quanti prodotti ci sono effettivamente nelle categorie.

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

allora il file da modificare è category-count.tpl 

 

all'interno troverai questo 

{strip}
<span class="heading-counter">
{if (isset($category) && $category->id == 1) OR (isset($nb_products) && $nb_products == 0)}
	{l s='There are no products in this category.'}
{else}
	{if isset($nb_products) && $nb_products == 1}
		{l s='There is 1 product.'}
	{elseif isset($nb_products)}
		{l s='There are %d products.' sprintf=$nb_products}
	{/if}
{/if}
</span>
{/strip}

modificalo in questo modo

<!--{strip}
<span class="heading-counter">
{if (isset($category) && $category->id == 1) OR (isset($nb_products) && $nb_products == 0)}
	{l s='There are no products in this category.'}
{else}
	{if isset($nb_products) && $nb_products == 1}
		{l s='There is 1 product.'}
	{elseif isset($nb_products)}
		{l s='There are %d products.' sprintf=$nb_products}
	{/if}
{/if}
</span>
{/strip}-->

salva il tutto, pulisci la cache e prova

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...