For RSGallery2 3.1.0, to remove the item name in a view like this one:
http://demo.rsgallery2.nl/demo-rsgallery2/2-second-gallery/13-test3.html.
The page has
- pagination - rsg_sem_inl_Nav
- item title, image, downloadlink - rsg_sem_inl_dispImg
- pagination - rsg_sem_inl_Nav
- tabs: Description, Voting, Comments, Exif - rsg_sem_inl_ImgDetails
- RSG2 footer - rsg_sem_inl_footer
I've added the class names of the div elements, Firebug is a handy tool for Firefox to find these things. I use them as a kind of "landmarks" to search for such texts in the files with Notepadd++.
You want to remove the item title and it's in a div with class rsg_sem_inl_dispImg. That div is found in /JOOMLAROOT/components/com_rsgallery2/template/semantic/html/inline.php, on line 9-11 you see that with a function showItem all the elements within this div are generated:
<div class="rsg_sem_inl_dispImg">
<?php $this->showItem(); ?>
</div>
You can find the function showItem in /JOOMLAROOT/components/com_rsgallery2/template/semantic/display.class.php on line 242 and further. This function outputs a table with three rows, one for the item name, one for the image and one for the downloadlink. So you can either remove the table row in which the item name is given on lines 254-256:
<tr>
<td><h2 class='rsg2_display_name' align="center"><?php echo htmlspecialchars(stripslashes($item->title), ENT_QUOTES); ?></h2></td>
</tr>
OR comment out the php statement that echos the item name on line 255:
<?php //echo htmlspecialchars(stripslashes($item->title), ENT_QUOTES); ?>
(two slashes, //, were added here).
I hope that by explaining it this way you get an idea of how to find things if you want to change more things :-)