How do you add social share buttons at the top of a thread in XenForo?

O

Otherwise Film

guest
I want social share buttons to appear at the top of a thread on XenForo.

How do I do that?
 
recommended
B
You need to open the XenForo Admin Panel (ACP) and create an advertising position for Thread view: Above message list (advertising position above the list of messages when viewing a thread.

After that, paste the following code in the HTML body:

HTML:
<div class="block">
    <div class="block-body">
        <xf:macro template="share_page_macros" name="buttons" arg-iconic="{{ true }}" arg-label="{{ phrase('share:') }}" />
    </div>
</div>
You need to open the XenForo Admin Panel (ACP) and create an advertising position for Thread view: Above message list (advertising position above the list of messages when viewing a thread.

After that, paste the following code in the HTML body:

HTML:
<div class="block">
    <div class="block-body">
        <xf:macro template="share_page_macros" name="buttons" arg-iconic="{{ true }}" arg-label="{{ phrase('share:') }}" />
    </div>
</div>
 
recommended
Top