1
Hi,
I'm trying to modify the following template:
xoopsmembers_searchresults.html
I changed this section:
<{section name=i loop=$users}>
<{$users[i].avatar}> | <{$users[i].name}> | <{$users[i].realname}> | <{$users[i].email}> | <{$users[i].pmlink}> | <{$users[i].website}> | <{$users[i].registerdate}> | <{$users[i].lastlogin}> | <{$users[i].posts}> |
<{if $is_admin == true}><{$users[i].adminlink}> | <{/if}>
<{/section}>
For this:
<{section name=i loop=$users}>
<{$users[i].signature}> | <{$users[i].name}> | <{$users[i].email}> | <{$users[i].pmlink}> |
<{if $is_admin == true}><{$users[i].adminlink}> | <{/if}>
<{/section}>
The point being to take out a few columns and add the signature field in the serch result.
The new result works find but won't show the signature field. Can't figure out why. I look at the member profil htlm and I seem to have the right variables.
Can't anyone point me what I did wrong?
Thx