inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Post by aRMY83 on Oct 24, 2018 13:18:49 GMT -8
In the Conversations Page template tab, I have this at the very top: and this is located at the very bottom: Forum Settings for PM's: The problem is that when I send a PM to a new member, they receive this message when trying to view that PM: Sorry you do not have access to the Messages area: (50 posts required) I'm sure the code above needs some modifications but I'm at a loss on this one. Note: right now, this is being tested on my test site: twkooler.proboards.com/
|
|
Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Oct 24, 2018 13:25:27 GMT -8
{if $[current_user.rank.name] != "New Member" && $[current_user.rank.name] != "" && $[current_user.rank.name] != ""}
This says:
If current user rank name is not new member AND current user rank is not blank AND current user rank name is not blank
This means that in order for your conditional to occur, the user must have all three qualifications -- their rank cannot be new member + blank + blank simultaneously, which I don't think is what you're going for.
I would recommend instead simply using the post total.
{if $[current_user.posts] <= 49} Your message {/if}
|
|
inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Post by aRMY83 on Oct 24, 2018 13:58:18 GMT -8
Hello Kami, Thank you for the reply and it works like a charm right now and the reason I say "right now", is I'm now seeing this ( red): If it helps, here is the entire code: (without the red highlighted)
Edit: disregard as I moved your code below the pagination. "duh rON"
|
|
Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Oct 24, 2018 14:22:36 GMT -8
You're welcome!
|
|