Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Viking

    (@vellengs)

    Hi grezom,

    Might you can change the function.php codex on line
    249 $bid->user_name = substr_replace($bid->user_name, ‘***’, 1, 3);

    Thread Starter grezom

    (@grezom)

    Thank you, modify:

    $ln = mb_strlen($bid->user_name);
    $repeat = $ln > 4 ? $ln - 2 : 3;
    $modifyname = mb_substr($bid->user_name, 0, 1) . str_repeat('*', $repeat) . ($ln > 4 ? mb_substr($bid->user_name, -1) : '');
    $bid->user_name = $modifyname;
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘More stars like ***’ is closed to new replies.