Hey Wutthiphong,
Hm, if you only want to selectively disable this, it's more tedious to hack because there is no way for the helper to know who is calling it. You need to apply the hacks on the following files,
/components/com_easysocial/themes/wireframe/stream/default/item.php
OLD:
[gist]
<?php echo $this->html('avatar.' . $stream->getActorAlias()->getType(), $stream->getActorAlias(), 'default', true, false); ?>
[/gist]
NEW:
[gist]
<?php echo $this->html('avatar.' . $stream->getActorAlias()->getType(), $stream->getActorAlias(), 'default', false, false); ?>
[/gist]
/modules/mod_easysocial_menu/tmpl/default.php
OLD:
[gist]
<?php echo ES::themes()->html('avatar.user', $my, 'lg'); ?>
[/gist]
NEW:
[gist]
<?php echo ES::themes()->html('avatar.user', $my, 'lg', false); ?>
[/gist]
/modules/mod_easysocial_dropdown_menu/tmpl/default.php
OLD:
[gist]
<?php echo $lib->html('avatar.user', $lib->my); ?>
[/gist]
NEW:
[gist]
<?php echo $lib->html('avatar.user', $lib->my, 'default', false); ?>
[/gist]