XF 1.5 Tag Cloud from tag_search template?

Azaly

Active member
Hello! Is it possible to put tag cloud from tag_search template

Code:
    <xen:if is="{$tagCloud}">
        <div class="section">
            <h3 class="textHeading">{xen:phrase most_popular_tags}</h3>
            <ul class="tagCloud">
            <xen:foreach loop="$tagCloud" key="$tagId" value="$tag">
                <li><a href="{xen:link tags, $tag}" class="tagCloudTag tagCloudTag{$tagCloudLevels.{$tagId}}">{$tag.tag}</a></li>
            </xen:foreach>
            </ul>
        </div>
    </xen:if>

to another place? I've tried but nothing showing. Please, help :confused:.
 
Moving it to where exactly?

The answer is very likely no... at least not without creating an addon. Template code like that is supported by a controller and model in the PHP code which fetches the actual data.
 
Top Bottom