Servus,

ist es möglich das .tpl so anzupassen das es in ein select reinpasst?

Ich habe es schon versucht, jedoch werden dann nur die Werte ausgegeben, OHNE <a href.....>

Dieser Teil wäre es:

HTML-Code:
<ul class="cloud">
<?php foreach ($this->tags as $tag): ?>
	<li class="<?php echo $tag['tag_class']; ?>"><?php if (strlen($this->jumpTo)): ?><a href="<?php echo $tag['tag_url']; ?>" title="<?php echo $tag['tag_name'] . ' (' . $tag['tag_count'] . ')'; ?>"><?php endif; ?><?php echo $tag['tag_name'] . ' (' . $tag['tag_count'] . ')'; ?><?php if (strlen($this->jumpTo)): ?></a><?php endif; ?></li>
<?php endforeach; ?>
</ul>
Danke
Dani