MyBB Community Forums

Full Version: Delete Topic Author Profile ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Just delete the author 's profile, other post show profile.
do you want to remove author info like below ?
Quote:Posts: 1
Threads: 1
Joined: Jan 2015
Reputation: 0
Warning Level: 0%

if so, you can remove the content in postbit_author_user template of the theme
i delete profile topic first message

[Image: 89zP1k.jpg]

[Image: VgDPYP.jpg]
^ hmm., what is the purpose of removing the topic author details completely ?
if you do it then why do users post new topics in your forum ..
my new project on film. http://forum.hdfilmkrali.com/forumdisplay.php?fid=2

I remove authors profile because i need first messages more areas
i also not a fan of removing the author info from first post... but to answer your question....

install the Template Conditionals plugin first...

and change the author info part in ACP >> Templates >> Post Bit Templates >> postbit_classic template as follows... that is add a conditional to it...

also edit the Post Bit Templates >> postbit template to make the same changes...

<if $postcounter != 1 then>
<div class="post_author scaleimages">
{$post['useravatar']}
<div class="author_information">
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
<span class="smalltext">
{$post['usertitle']}<br />
{$post['userstars']}
{$post['groupimage']}
</span>
</div>
<div class="author_statistics">
{$post['user_details']}
</div>
</div>
</if>
Thanks