Like etc button above sig line & other queries

avi

Active member
1. I want #Post, Like, Reply buttons above signature line.


2. Is there any points system in xF ? Like if user posts a thread he gets x points, for each reply, y points etc

3. Why I never see any search crawlers on my forum ? are they invisible from Who is Online list OR they are not present ? If yes, how shall I add them ?

4. Default avatar for newly registered members.

5. I saw in some xF forum, they had some nice global announcement below header. It had some x button at top-right to close. Any ideas how shall I add it ?

Thank you !
 
1 - I believe you'll have to edit the 'message' template, find;
Code:
        <xen:if is="{$visitor.content_show_signature} && {$message.signature}">
            <div class="baseHtml signature ugc{xen:if $message.isIgnored, ' ignored'}"><aside>{xen:raw $message.signatureHtml}</aside></div>
        </xen:if>
     
        {xen:raw $messageAfterTemplate}
Replace with;
Code:
        {xen:raw $messageAfterTemplate}
 
<xen:if is="{$visitor.content_show_signature} && {$message.signature}">
            <div class="baseHtml signature ugc{xen:if $message.isIgnored, ' ignored'}"><aside>{xen:raw $message.signatureHtml}</aside></div>
        </xen:if>

2 - There isn't a built in points feature but I'm sure you'll find a mod for it.

3 - Unsure.

4 - There is a default avatar for all users.
 
^Thanks a lot !

1. Done !

2. Yup. I searched but couldn't find any mods. So was wondering if there is any mod.

3. Okay

4. Yup, just replace it in FTP ?
 
2. There is no points system.

3. You can't add crawlers, they will automatically search your site periodically.

5. Use the Notices feature.
 
Top Bottom