Topic: [help] Secondary Message
Okay, so I want a post to be able to have an optional secondary message, I manually added a column to pun_posts structure called "post_extra". It's nullable so I can check that with an if-statement an ignore it if it's null.
But how would I retrieve that data and add it on the end of (or after) the $forum_page['message']['message']?
I'm fairly new to PunBB modding so I'm not awfully familiar with how each component works with each other.
One I understand how to add it to the end I can do the rest (like editing the message etc) on my own.
Note: I'm creating this directly in the PHP files themselves rather than as a hook, just because I'm more comfortable doing it this way, I convert it to a hook after I finish it though.