PDA

View Full Version : How to show usergroup title markup for one group to all


metalguy639
12-23-2010, 10:57 PM
I want to show one of my usergroups title as a certain markup. The code i want to use for the markup is:

<span style="font-weight:bold;font-style:italic;color:red;">$post[usertitle]</span>

And I only want one usergroup to show this markup in the postbit_legacy where the user title is. All the other usergroups would stay normal. What is the conditional code that I can use? I've tried several already that have not worked yet. Here is what I have right now and its not working:

<if condition="$post['usertitle']"><div class="smallfont"><if condition="$bbuserinfo[usergroupid] == 9"><span style="font-weight:bold;font-style:italic;color:red;">$post[usertitle]</span>
<else />$post[usertitle]</div></if></if>

I also want to show inside the vb text editor certain info for the users to fill out and have a thread title already coded into the threads in only one forum id, how would I go about that as well?

kh99
12-23-2010, 11:22 PM
Is there some reason you're not just entering the markup for the usergroup in the ACP? (Maybe because you only want it in postbit?)

Anyway, I think you want something like:

<if condition="is_member_of($post, 9)">


if you use $bbuserinfo it will check the current user (the one viewing), not the one for each post.

metalguy639
12-23-2010, 11:49 PM
I do not want it just for one post. And I already tried doing the markup in the usergroup itself. It allows for markup for the username only I guess. I tried both html & bb code neither works. I've attached a couple of screenshots to show what I'm trying to do.

postbit explanation

http://img831.imageshack.us/img831/450/postbit.png


Cannot place html or bb markup in this space.

http://img121.imageshack.us/img121/6567/usergroup.png

kh99
12-23-2010, 11:54 PM
OK, sorry - I missed that "title" in your first post. So anyway, did you try that condition? (Here's what you posted with the condition changed)

<if condition="$post['usertitle']"><div class="smallfont"><if condition="is_member_of($post, 9)"><span style="font-weight:bold;font-style:italic;color:red;">$post[usertitle]</span>
<else />$post[usertitle]</div></if></if>


And I also don't know about this but just so it won't get lost:

I also want to show inside the vb text editor certain info for the users to fill out and have a thread title already coded into the threads in only one forum id, how would I go about that as well?

metalguy639
12-24-2010, 01:06 AM
Hey that worked. :) Thanks. Now for the other one.