Sig

Teekay

Paragon
Joined
Nov 21, 2009
Messages
2,139
Reaction score
0
FP$
6
I got a new theme for my forum - http://thetech-zone.com
but in every post, it doesn't show that sig, and if you want to see the user's sig you would have to go the their user profile.

How do you get it to show the user's sig in every one of their posts?

I will + rep anyone that helps me out with this.
 
I think if you go to ACP >> User Account/Profile >> Alter user's permissions and submit. Something like that, it may just be disabled due to theme installation. If it's MyBB, then go to Plug-In's or General Configuration and them scroll down there.
 
Lawson said:
I think if you go to ACP >> User Account/Profile >> Alter user's permissions and submit. Something like that, it may just be disabled due to theme installation. If it's MyBB, then go to Plug-In's or General Configuration and them scroll down there.
The forum software is MyBB and there is nothing about the sigs in General Configuration.
 
Go to Configuration>>User Reg. & Profile Opt.>>Allow MyCode in signatures. The MyCode can be found halway between User Reg. & Profile Opt. If that doesn't work then it may be a theme error, try re-uploading it and check all group permissions seeing as they may have been reset.
 
Lawson said:
Go to Configuration>>User Reg. & Profile Opt.>>Allow MyCode in signatures. The MyCode can be found halway between User Reg. & Profile Opt. If that doesn't work then it may be a theme error, try re-uploading it and check all group permissions seeing as they may have been reset.
The sig is working but it doesn't show in any of the posts, but if you go the user's profile page then it shows on that but not anywhere else. How do you get it to show in the posts.
 
Have you check users permission like members who view the forum, have you allowed the option for them to view signature, if not that, re-upload the theme. If that does not work, then I am out.
 
Lawson said:
Have you check users permission like members who view the forum, have you allowed the option for them to view signature, if not that, re-upload the theme. If that does not work, then I am out.
I went to the user settings/permissions
'Thread View Options
Display users' signatures in their posts' and that is ticked but the theme does not allow sigs to be shown on the posts. So you would have to edit one of the files for it show the sigs.

Which one do I edit and what do I add to it?
 
It shows the sigs in 'Display posts in classic mode' but not when it's unticked.
 
Go to template and themes -> Templates -> Post Bit Templates -> postbit

Look for
Code:
				<div class="post_body" id="pid_{$post['pid']}">
					{$post['message']}
				</div>
				{$post['attachments']}

				<div class="post_meta" id="post_meta_{$post['pid']}">
				{$post['iplogged']}
				</div>
and put
Code:
				<div class="post_body" id="pid_{$post['pid']}">
					{$post['message']}
				</div>
				{$post['attachments']}
				{$post['signature']}

				<div class="post_meta" id="post_meta_{$post['pid']}">
				{$post['iplogged']}
				</div>

You may have to add {$post['iplogged']} to yours
 
Hitakashi said:
Go to template and themes -> Templates -> Post Bit Templates -> postbit

Look for
Code:
				<div class="post_body" id="pid_{$post['pid']}">
					{$post['message']}
				</div>
				{$post['attachments']}

				<div class="post_meta" id="post_meta_{$post['pid']}">
				{$post['iplogged']}
				</div>
and put
Code:
				<div class="post_body" id="pid_{$post['pid']}">
					{$post['message']}
				</div>
				{$post['attachments']}
				{$post['signature']}

				<div class="post_meta" id="post_meta_{$post['pid']}">
				{$post['iplogged']}
				</div>

You may have to add {$post['iplogged']} to yours
Thanks for the help, it worked 😀

+ rep added 🙂
 
Back
Top Bottom