How to make a div visible only to thread author? - Printable Version +- MyBB Community Forums (https://community.mybb.com) +-- Forum: 1.8 Support (https://community.mybb.com/forum-175.html) +--- Forum: General Support (https://community.mybb.com/forum-176.html) +--- Thread: How to make a div visible only to thread author? (/thread-207492.html) |
How to make a div visible only to thread author? - hefnjosch - 2017-01-17 Hi guys, I'm looking for a way to make a div visible only to thread author like edit thread button. Can you help me? Thanks your help. Edit: I found my solution. I downloaded ZingaBurga's PHP plugin from here: http://mybbhacks.zingaburga.com/showthread.php?tid=260 Then I added this code my page: <if $mybb->user['uid'] == $thread['uid'] then> MY SPECIFIC CODES HERE (DIV, BUTTON ETC.) </if> So it is worked! |