and there in lies the challenge/difficulty. A rating is not going to have an 'image_title' because its not an image. The activity stream has lots of different types of things in it.
What your after is the 'image_title' but when are you after it. That's what you need to create a structure to explain.
You can output anything you like anywhere you like if you can explain what it is you want. (and have a place to start.)
Quote: ....and my 'target' is comment_item_title.
Great, you have a place to start. So from there we need to explain it.
What I think you want is:
* In the action timeline on a users profile, if there was a comment left on an image in a gallery, then instead of showing the user image of the user who wrote the comment, show the gallery image.
The steps to locate that are:
* figure out what template controls the list items for the actions. in this case its:
/modules/jrActivity/templates/item_list.tpl
* locate where you want to output whatever.
-- type STUFF, OTHER STUFF, ELEPHANTS, A DIFFERENNT MARKER and refresh the page until you see one of the markers your after that goes where you want it to go. In this case its:
LINE 115 ish that currently reads:
{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="icon" crop="auto" alt=$item.user_name class="action_item_user_img img_shadow img_scale"}
use the debug here to figure out what variables would give you what your actually after, in this case its:
{if $item.action_item.comment_module == "jrGallery"}
{jrCore_module_function function="jrImage_display" module="jrGallery" type="gallery_image" item_id=$item.action_item.comment_item_id size="icon" crop="auto" alt=$item.action_item.comment_text class="action_item_user_img img_shadow img_scale"}{else}
{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="icon" crop="auto" alt=$item.user_name class="action_item_user_img img_shadow img_scale"}{/if}
* and make sure you leave the part that is not related to what you want to change un-effected so other stuff still works normally