Hi carblanco,
anmari@anmari.com
I’ve long ago given up re obfuscating/hiding my email.
and gmail anti spam has got so good, normally not a problem.
At moment I don’t think there is a way with current version. I need to add some filters, pluggable functions….
you could try (this is totally untested right now, but if you tell me it works for you, I’ll leave it in the next update.
Add aboveline 641 of ameta-list:
$cols = apply_filters('amr-users-headings', $cols,$icols,$ulist);
the next line should be
foreach ($icols as $ic => $cv) { /* use the icols as our controlling array, so that we have the internal field names */
and write yourself a little plugin with an
‘add filter ‘ call see https://codex.www.ads-software.com/Function_Reference/add_filter and
a function that accepts
$cols – array of headings (the nice names)
$icols – the internal field names (should ‘match’ $cols)
$ulist – the list number (in case different headings for diff lists)
modify $cols as you see fit and return $cols array from the function (must keep same number of elements)
Let me know if it works for you and I’ll leave the code in (else it will be tested when next I can make mods).