I'm trying to change the look of page (index.php?module=Profile&func=modify), where user can modify his user information. On this page, there is this code:
Code
<!--[foreach from=$duditems item=item]-->
<!--[if $item.prop_weight gt 0]-->
<!--[dudoptionalitemmodify item=$item]-->
<!--[/if]-->
<!--[/foreach]-->
<!--[if $item.prop_weight gt 0]-->
<!--[dudoptionalitemmodify item=$item]-->
<!--[/if]-->
<!--[/foreach]-->
- which shows all property labels for modifying (created by admin in admin->users), but I need to know the code which shows only the property label I need, so, this code should show in the end on the page for example something like this:
Code
<div class="pn-adminformrow">
<label for="prop_country">Country</label>
<label><input name="dynadata[COUNTRY]" value="Country 1" type="radio">Country 1</label><br>
<label><input name="dynadata[COUNTRY]" value="Country 2" type="radio">Country 2</label>
</div>
<label for="prop_country">Country</label>
<label><input name="dynadata[COUNTRY]" value="Country 1" type="radio">Country 1</label><br>
<label><input name="dynadata[COUNTRY]" value="Country 2" type="radio">Country 2</label>
</div>
Any ideas?
Thanks!
edited by: mdee24, Jan 28, 2008 - 07:16 PM
