MyBB Community Forums

Full Version: Removing User Details
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: image4.jpg]
I would like remove the 'Joined Date'
Im in my postbit_classic but its tide in with 'user_details' so if remove user_details posts and reps go too
[Image: image5.jpg]
{$post['usertitle']}<br />
{$post['groupimage']}
{$post['useravatar']}<br />
{$post['user_details']}

Can user_details be broken down???
Thanks,
User Details has a separate template from what I remember. I think it's called postbit_user_details Smile
1. Put {$post['user_details']} back in its place.

2. Go to Admin CP > Templates & Style > Templates > Your Template Set > Post Bit Templates > postbit_author_user.

3. Find:

{$lang->postbit_posts} {$post['postnum']}<br />
{$lang->postbit_joined} {$post['userregdate']}
{$post['replink']}{$post['warninglevel']}

4. Replace with:

{$lang->postbit_posts} {$post['postnum']}
{$post['replink']}{$post['warninglevel']}

/beaten
[Image: image6.jpg]
Yes now its looking very tidy!!!
Thanks,