Jump to content
  • 0

Wybierane tagi


Thoriam

Question

3 answers to this question

Recommended Posts

  • 0

nie ma takiego modułu, przynajmniej ja takiego nie znam

 

najprostszą drogą do osiągnięcia tego o czym mówisz jest edycja pliku .tpl tego modułu

 

w pętli foreach dodajesz prosty warunek if którym sobie ustawisz jakie tagi wyświetlić

{foreach from=$tags item=tag name=myLoop}
		{if $tag.name == 'ipod' or $tag.name == 'apple'}
	<a href="{$link->getPageLink('search', true, NULL, "tag={$tag.name|urlencode}")}" title="{l s='More about' mod='blocktags'} {$tag.name|escape:html:'UTF-8'}" class="{$tag.class} {if $smarty.foreach.myLoop.last}last_item{elseif $smarty.foreach.myLoop.first}first_item{else}item{/if}">{$tag.name|escape:html:'UTF-8'}</a>
		{/if}
{/foreach}

 

w przykładzie powyżej zdefiniowałem taki warunek if:

{if $tag.name == 'ipod' or $tag.name == 'apple'}

 

oznacza on tyle:

jeżeli nazwa tagu to ipod lub nazwa tagu to apple - wyświetl fo - wszystkie tagi niezdefiniowane w tym warunku nie zostaną wyświetlone

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