I know, if we set as "user" in character page then the character display will be individual for anyone.
But the question is.. how to set a per-character display default config?
By default is all enabled, if a new member upload his profile then will be showing everything (all on in per-character display) and then I need to check everyone to switch them to the default display idea, wich for example is:
talents off, spellbook off, bags off, mail off, bank off, money off. everthing else ON.
So if some member want to show his bank items, then will be enabled for that member.
Maybe a good thing will be making the per-character display all OFF by default. or add a function like "set this config as default".
---
ok while writing this post just found howto. correct me if wrong plz:
admin.php
- Code: Select all
<td class="membersRow'.(($i%2)+1).'">';
// first horizontal column , "off" buttons
$html .= '<input type="radio" id="chard_f'.$k.'_'.$values['member_id'].'" name="disp_'.$values['member_id'].':'
.$val_name.'" value="3" '.( $values[$val_name] == '3' ? 'checked="checked"' : '' ).' /><label for="chard_f'.$k.'_'.$values['member_id'].'">off</label><br />'."\n";
//second hcolumn, "on" buttons
$html .= '<input type="radio" id="chard_n'.$k.'_'.$values['member_id'].'" name="disp_'.$values['member_id'].':'
.$val_name.'" value="1" '.( $values[$val_name] == '1' ? 'checked="checked"' : '' ).' /><label for="chard_n'.$k.'_'.$values['member_id'].'">on</label>'."\n";
$html .= '</td>';
switch from value="1" to value="3" in the first h_column and from 3 to 1 in the second hcolumn. and will be all off by default.
edit: well, that doesn´t work. (
just change te default button pos. but not the default setting.
damn.. is not difficult. just need to change a single value from 3 to 1..
but WHERE ! lol