We need to make 2 changes in JComments component.
On my site I changed multicategories component into FJ Related:
http://extensions.joomla.org/extensions/structure-a-navigation/multi-categorization/6926.
Your method working also for this component. Of course we need to replace
com_multicategories with
com_fjrelated1. Open file /plugins/content/jcomments.php and replace code
|| ($option != 'com_content' && $option != 'com_alphacontent' && $option != 'com_customproperties')) {
with
|| ($option != 'com_content' && $option != 'com_alphacontent' && $option != 'com_jfrelated')) {
2. Open file /plugins/system/jcomments.php and replace code:
if ($option == 'com_content' || $option == 'com_alphacontent') {
with
if ($option == 'com_content' || $option == 'com_alphacontent' || $option == 'com_jfrelated') {
It's working too

I put this here, meybe someone will be iterested in it in the future

Regards.
Master7