I use something like
{{ bb_code($link.description, 'field', $link) }}
it comes back as:
<div class="bbWrapper">$link.description </div>
but i want to add this directly behind the text
and not in a new row. Any idea how to do that?
Result should look like
This is my description. #lala #lila #lu
{{ bb_code($link.description, 'field', $link) }}
it comes back as:
<div class="bbWrapper">$link.description </div>
but i want to add this directly behind the text
Code:
<xf:if is="$link.tags">
<xf:foreach loop="$link.tags" value="$tag">
#<a href="{{ link('tags', $tag) }}" class="linkTagItem" dir="auto">{$tag.tag}</a>
</xf:foreach>
</xf:if>
and not in a new row. Any idea how to do that?
Result should look like
This is my description. #lala #lila #lu