MyBB Hacks

Full Version: I have a unique request/
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would like to do something special and i have exhausted all other ways i can think of so i would love it if you could help taking into consideration im not sure if this is even possible.

What i need.

I would like to use if statements to add a piece of text next to a post in a thread if that poster is the author of the thread based off the ip.

Logically it would be something like. If the post ip is the same as the first post ip then do this.

Example but im not sure if its even possible Your my last hope.

<if $thread['ipaddress']  == $post['ipaddress'] then>Thread Author</if>

Anhy other suggestions to achieve this would be appreciated. Please note it has to be based on ip as i allow guest posting.
The IP address is stored alongside the post, not the thread.  You could do it if you could somehow reference the first post (requires a code modification).

But IP address based matching is unreliable anyway...
(02-23-2015 10:17 AM)ZiNgA BuRgA Wrote: [ -> ]The IP address is stored alongside the post, not the thread.  You could do it if you could somehow reference the first post (requires a code modification).

But IP address based matching is unreliable anyway...

I know Frown

Do you know how i could reference the first post? would it be hard?
Reference URL's