XF 2.3 Is there a way to get an image for og:image" content= per page node?

Motobaka

Active member
Hello, im trying to get the main image on a page node to be the og:image" content= that is mentioned on the header, but I guess each page node uses the same header as its only the body part I imagine.

Would it be possible to let the header know to use the image as the og image?
 
Try this:

In thread_view template find this

Code:
<xf:macro id="metadata_macros::metadata"
    arg-description="{$fpSnippet}"
    arg-shareUrl="{{ link('canonical:threads', $thread) }}"
    arg-canonicalUrl="{{ link('canonical:threads', $thread, {'page': $page}) }}" />

And replace with this so
Code:
<xf:if is="$thread.cover_image">
    <xf:macro id="metadata_macros::metadata"
        arg-description="{$fpSnippet}"
        arg-shareUrl="{{ link('canonical:threads', $thread) }}"
        arg-canonicalUrl="{{ link('canonical:threads', $thread, {'page': $page}) }}"
        arg-imageUrl="{$thread.cover_image}" />
<xf:else/>
    <xf:macro id="metadata_macros::metadata"
        arg-description="{$fpSnippet}"
        arg-shareUrl="{{ link('canonical:threads', $thread) }}"
        arg-canonicalUrl="{{ link('canonical:threads', $thread, {'page': $page}) }}" />
</xf:if>
 
Back
Top Bottom