43
Quote:
well dear jilong you have to change some lines in system template to change the edituser file paths from from {xoops_root_path} to smart profile and make smart profile the default user editor.
which files is that? the file under modules/system/templates/****.html?
Quote:
and to showing those fields , you have to give permissions by admin side
yes, i got it. this one forgot to set premission ^^
do you know how to change the smartprofile display? i would like to change it display 1 category per row, now defualt it show 2 category per row.
i change the smartprofile_userinfo.html
<div style="width: 48%; float: left; padding: 0px 5px 10px 0px;<{if $catcount % 2 == 0}> clear: left;<{/if}>">
<table class="outer" cellpadding="4" cellspacing="1">
<tr>
<th colspan="2" align="center"><{$category.cat_title}>th>
tr>
<{foreach item=field from=$category.fields}>
<tr>
<td class="head"><{$field.title}>td>
<td class="even"><{$field.value}>td>
tr>
<{/foreach}>
table>
div>
to
<div style="width: 90%; float: left; padding: 0px 5px 10px 0px;">
<table width="100%" class="outer" cellpadding="2" cellspacing="1">
<tr>
<th colspan="2" align="center"><{$category.cat_title}>th>
tr>
<{foreach item=field from=$category.fields}>
<tr>
<td class="head"><{$field.title}>td>
<td class="even"><{$field.value}>td>
tr>
<{/foreach}>
table><br />
div>
it still show in 2 category per row*/