MyBB Community Forums

Full Version: Thank You/Like System in custom theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
https://i.imgur.com/4HWXBIg.png

Does anyone know how to add this section manually through postbit?
The content you need to add to the postbit and postbit_classic templates is:

<div style="{$post['tyl_display']}" id="tyl_{$post['pid']}">{$post['thankyoulike_data']}</div>

In the default templates, it goes after:

<div class="post_content">

You'll need to identify the appropriate place in your custom theme's postbit templates.
(2023-03-21, 10:56 AM)Laird Wrote: [ -> ]The content you need to add to the postbit and postbit_classic templates is:

<div style="{$post['tyl_display']}" id="tyl_{$post['pid']}">{$post['thankyoulike_data']}</div>

In the default templates, it goes after:

<div class="post_content">

You'll need to identify the appropriate place in your custom theme's postbit templates.

Amazing!  Heart ty