The vid you posted shows the contact for a website, not for PM's, not for email etc (hint, it will also display if you have a google+ entry in your UCP).RMcGirr83 wrote:You never said it had to do with website field. Anyway, each profile field can be assigned to display when viewing a topic or not. They are not permission based and there is no auth check within the file.
well, would you look at that. I wonder why that is so. doesn't make any sense to me for that to work like that.RMcGirr83 wrote:Robert, insert a website into a users profile then view again as a guest.
<!-- IF not S_GROUP_1 or IF not S_GROUP_7-->
<!-- ENDIF -->
That's not correct template systax I think (twice usingstevemaury wrote: ↑Fri Nov 18, 2016 4:47 pmCode: Select all
<!-- IF not S_GROUP_N or IF not S_GROUP_X--> (where N and/or X is the group_id of the group you want to hide it from)
IF
)Code: Select all
<!-- IF not (S_GROUP_A or S_GROUP_B) -->
No users in group A or B will see this (replace A and B with id numbers)
<!-- ENDIF -->
Code: Select all
<!-- IF ((not S_GROUP_A) and (not S_GROUP_B)) -->
No users in group A or B will see this (replace A and B with id numbers)
<!-- ENDIF -->
Code: Select all
<!-- IF ((not S_GROUP_1) and (not S_GROUP_7)) -->
<dd class="profile-contact">
<strong>{L_CONTACT}{L_COLON}</strong>
<div class="dropdown-container dropdown-left">
<a href="#" class="dropdown-trigger" title="{postrow.CONTACT_USER}">
<i class="icon fa-commenting-o fa-fw icon-lg" aria-hidden="true"></i><span class="sr-only">{postrow.CONTACT_USER}</span>
</a>
<div class="dropdown">
<div class="pointer"><div class="pointer-inner"></div></div>
<div class="dropdown-contents contact-icons">
<!-- BEGIN contact -->
{% set REMAINDER = postrow.contact.S_ROW_COUNT % 4 %}
<!-- DEFINE $S_LAST_CELL = ((REMAINDER eq 3) or (postrow.contact.S_LAST_ROW and postrow.contact.S_NUM_ROWS < 4)) -->
<!-- IF REMAINDER eq 0 -->
<div>
<!-- ENDIF -->
<a href="<!-- IF postrow.contact.U_CONTACT -->{postrow.contact.U_CONTACT}<!-- ELSE -->{postrow.U_POST_AUTHOR}<!-- ENDIF -->" title="{postrow.contact.NAME}"<!-- IF $S_LAST_CELL --> class="last-cell"<!-- ENDIF --><!-- IF postrow.contact.ID eq 'jabber' --> onclick="popup(this.href, 750, 320); return false;"<!-- ENDIF -->>
<span class="contact-icon {postrow.contact.ID}-icon">{postrow.contact.NAME}</span>
</a>
<!-- IF REMAINDER eq 3 or postrow.contact.S_LAST_ROW -->
</div>
<!-- ENDIF -->
<!-- END contact -->
<!-- ENDIF -->
S_GROUP_ID
where ID is the group id number.If it’s an issue with the style you should post in the support forum for the style, similarly with an extension problem.