Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<div class="baseHtml signature messageText ugc{xen:if $message.isIgnored, ' ignored'}"><aside>{xen:raw $message.signatureHtml}</aside></div>
<xen:if hascontent="true">
<div class="baseHtml signature messageText ugc{xen:if $message.isIgnored, ' ignored'}"><aside><xen:contentcheck>{xen:raw $message.signatureHtml}</xen:contentcheck></aside></div>
</xen:if>
There's one outdated template which is the message template, ideally the merge system should work... if not the manual fix would be:
In the message template find:
Code:<div class="baseHtml signature messageText ugc{xen:if $message.isIgnored, ' ignored'}"><aside>{xen:raw $message.signatureHtml}</aside></div>
Replace with:
Code:<xen:if hascontent="true"> <div class="baseHtml signature messageText ugc{xen:if $message.isIgnored, ' ignored'}"><aside><xen:contentcheck>{xen:raw $message.signatureHtml}</xen:contentcheck></aside></div> </xen:if>
Merge at least worked. But what should I look for if it's "not" working as intended? What will the error be? or fault?
My fix would only be if the merge would tell you it didn't work, if it didn't show an error message your fine. If you want to double check just open the message template, do a little search for baseHtml like a browser search ctrl-f, make sure the xen:content check is around the div.
Can confirm, this worked for me as well! Thanks for pointing out this thread for me, @Neal.There's one outdated template which is the message template, ideally the merge system should work... if not the manual fix would be:
In the message template find:
Code:<div class="baseHtml signature messageText ugc{xen:if $message.isIgnored, ' ignored'}"><aside>{xen:raw $message.signatureHtml}</aside></div>
Replace with:
Code:<xen:if hascontent="true"> <div class="baseHtml signature messageText ugc{xen:if $message.isIgnored, ' ignored'}"><aside><xen:contentcheck>{xen:raw $message.signatureHtml}</xen:contentcheck></aside></div> </xen:if>
Sweet it worked thanks RussMake sure you hit SAVE AND EXIT, also the edit should be applied to XENBASE, not your purchased style or child style.