generic "Signature" for each Forum-post ?

erich37

Well-known member
is there a chance to have a certain Signature appearing at each post which is being made by all members in the Forum ? Meaning, I would like to have each post of ALL members having the following comment at the bottom of each posting:

example:
it's NOT ok to contact this poster with services or other commercial interests
 
In the message template:

Find:
Code:
		<xen:if is="{$visitor.content_show_signature} && {$message.signature}">
			<div class="baseHtml signature ugc"><aside>{xen:raw $message.signatureHtml}</aside></div>
		</xen:if>
You could add your message right after the </xen:if>, that way even if someone has display no signatures it would still show your message.
 
Top Bottom