inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on May 20, 2013 8:39:32 GMT -8
The code looks like it's working fine. The reason it's not showing up is likely due to this: support.proboards.com/post/5282648/thread, which I've now bumped up to a high priority, so it should be fixed by the next push.
|
|
inherit
178402
0
Apr 21, 2016 20:27:45 GMT -8
aBiSh
207
April 2012
emilayskie
|
Post by aBiSh on May 21, 2013 13:26:12 GMT -8
Thanks Tim Camara! Would really love for this to work. Appreciate your help.
|
|
inherit
178402
0
Apr 21, 2016 20:27:45 GMT -8
aBiSh
207
April 2012
emilayskie
|
Post by aBiSh on May 29, 2013 15:37:57 GMT -8
Hi jrryan! I've already successfully added the email address a long time ago. That is actually not my problem. We are talking about custom profile fields. Also, I've added {if $[current_user.username] == "admin"} to show it to me only and it's been working fine with showing emails on the list so I don't think that has anything to do with it. I am fine with fixing width and alignment so I don't really need to remove anything else. I don't believe you understand the problem but I appreciate your input. I'm just now waiting for the "next push" that Tim Camara has promised.
|
|
inherit
musicforumsuc@gmail.com
196156
0
Jul 3, 2013 20:40:56 GMT -8
blazer257
2
June 2013
blazer257
|
Post by blazer257 on Jun 28, 2013 22:24:48 GMT -8
Any word on this "next push"?
|
|
xLc
Junior Member
Posts: 290
inherit
180982
0
Sept 18, 2019 6:25:07 GMT -8
xLc
290
July 2012
lifestylecourier
|
Post by xLc on Aug 18, 2013 1:18:26 GMT -8
Old thread I know, but is there anyway to make the email font smaller? in my memberslist it puts the emails across 2 lines
|
|
inherit
etheriandr@aim.com
197724
0
Dec 22, 2013 22:37:02 GMT -8
etheriandr
3
August 2013
etheriandr
|
Post by etheriandr on Aug 28, 2013 16:24:25 GMT -8
The code looks like it's working fine. The reason it's not showing up is likely due to this: support.proboards.com/post/5282648/thread, which I've now bumped up to a high priority, so it should be fixed by the next push. Any update on when this issue will be addressed? Just tried it again not too long ago, seems to only show the custom fields of the currently logged in user. - Thanks!
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on Aug 29, 2013 8:22:33 GMT -8
That issue was fixed months ago, I would suggest making sure that your template is coded correctly.
|
|
inherit
etheriandr@aim.com
197724
0
Dec 22, 2013 22:37:02 GMT -8
etheriandr
3
August 2013
etheriandr
|
Post by etheriandr on Sept 2, 2013 10:16:44 GMT -8
I thought I got the code in there correctly, based on examples I read here in the forums.
<td> {foreach $[user.custom_field]} {if $[user.custom_field.name] == "Division"} $[user.custom_field.value] {/if} {/foreach} </td> <td> {foreach $[user.custom_field]} {if $[user.custom_field.name] == "Guild"} $[user.custom_field.value] {/if} {/foreach} </td>
The result is a lot like the issue in this thread describes. You only see the custom fields filled in for yourself. None of the fields for the other members show up. (Verified by multiple members, so it isn't just my fields showing up for everyone.)
One thing that just occurred to me. I have only been doing a preview, seeing that it doesn't work and then I cancel my changes. Could the issue still exist when previewing a template? I can try actually making the change to see if it does work, and reverse it if not.
We have a forum on freeforums.net - is there something special we have to do to get the latest version or does it automatically update?
Thanks
|
|
inherit
etheriandr@aim.com
197724
0
Dec 22, 2013 22:37:02 GMT -8
etheriandr
3
August 2013
etheriandr
|
Post by etheriandr on Sept 2, 2013 10:27:15 GMT -8
I tried saving the changes but got the same result. Am I doing something stupid in the template? I believe it is the default template, minus the "account" column and plus two custom columns. We made matching changes to the header portion of the table. It looks great, besides only showing your custom fields, nobody else's.
{foreach $[user]} <tr id="$[user.content_id]" class="$[user.content_class] clickable" {if $[user.ip]}data-ip="$[user.ip]"{/if}> <td class="checkbox clickable">$[user.checkbox]</td> <td class="name target">$[user]</td> <td> {foreach $[user.custom_field]} {if $[user.custom_field.name] == "Division"} $[user.custom_field.value] {/if} {/foreach} </td> <td> {foreach $[user.custom_field]} {if $[user.custom_field.name] == "Guild"} $[user.custom_field.value] {/if} {/foreach} </td> <td class="rank">{if $[user.group]}$[user.group.name]{else}$[user.rank.name]{/if}</td> <td class="posts">$[user.posts]</td> <td class="date-registered">$[user.registered_on]</td> <td class="last-online last">{if $[user.is_online]}Member is Online{else}$[user.last_online]{/if}</td> </tr> {/foreach} {if !$[user]} <tr><td colspan="7" class="last center">No members were found.</td></tr> {/if}
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on Sept 3, 2013 13:41:33 GMT -8
Hm, it appears we may have re-broken it when we changed some other loading behavior. I'll add it back into our list of priority bugs.
|
|