Hello,
I'm trying to create an advanced template.
In order to customize some simples things, i saw that the function who generate the user-info block is not fully coded to do what i want.
The function "generateUserInfo();" give that : (when i'm connected obviously)
<ul>
<li>firstname lastname</li>
<li><a href="site.php?pageid=public_person_my_account">Mon compte</a></li>
<li><a href="site.php?formid=logoff_check">Déconnexion</a></li>
<li class="last-child">[...language selector...]</li>
</ul>
I want to skin the "logoff" button, the "User ID" and the "my account" button with different design.
But the li and the a tags are not classed.
I would need something like that :
<ul>
<li class="userid">firstname lastname</li>
<li class="myaccount_button"><a href="site.php?pageid=public_person_my_account">Mon compte</a></li>
<li class="logoff_button"><a href="site.php?formid=logoff_check">Déconnexion</a></li>
<li class="last-child">[...language selector...]</li>
</ul>
But the fonction, (and sure, i understand why) is under zendguard protection.
Can you provide me the modified fonction like i want, or an open UserInfo that i can modify myself?
I think its not a critical function, intellectual rights speaking, and i'm sure you can bring it to your todo list for the next update.
regards,
Tom