Hey anybody,
i want to put out a column field from xf_thread (mysql table). The name of the field is named "test".
How can i do this in the TitleBar of page_container template?
Can anybody help me please?
i want to put out a column field from xf_thread (mysql table). The name of the field is named "test".
How can i do this in the TitleBar of page_container template?
Can anybody help me please?
HTML:
<xen:hook name="page_container_content_title_bar">
<xen:if is="!{$noH1}">
<!-- h1 title, description -->
<div class="titleBar">
{xen:raw $beforeH1}
<h1><xen:if
is="{$h1}">{xen:raw $h1}<xen:elseif
is="{$title}" />{xen:raw $title}<xen:else
/>{$xenOptions.boardTitle}</xen:if></h1>
<xen:if is="{$pageDescription.content}"><p id="pageDescription" class="muted {$pageDescription.class}">{xen:raw $pageDescription.content}</p></xen:if>
</div>
</xen:if>
</xen:hook>