XF 2 I want the comments icon to replace the ellipses in profile posts sidebar widget when there are comments

You can achieve that by editing the profile_post_macros template and changing this:

HTML:
<a href="{{ link('profile-posts', $profilePost) }}" rel="nofollow" class="contentRow-extra" data-xf-click="overlay" data-xf-init="tooltip" title="{{ phrase('interact')|for_attr }}">&#8226;&#8226;&#8226;</a>

To this:
HTML:
<a href="{{ link('profile-posts', $profilePost) }}" rel="nofollow" class="contentRow-extra" data-xf-click="overlay" data-xf-init="tooltip" title="{{ phrase('interact')|for_attr }}"><xf:fa icon="fa-comments" /></a>

It will change all instances where that code is used though - not sure if that's an issue or not.

See here for a demo: https://db76df28bf7ba8d3.demo-xenforo.com/223/index.php
 
HTML:
<a href="{{ link('profile-posts', $profilePost) }}" rel="nofollow" class="contentRow-extra" data-xf-click="overlay" data-xf-init="tooltip" title="{{ phrase('interact')|for_attr }}"><xf:fa icon="fa-comments" /> {$__globals.profilePost.comment_count}</a>
 
Top Bottom