Ok...maybe I might be somewhat confused. I went through just about every file that has anything to do with RSGallery2 and the pathway...or at least I believe I have. Anyrate, the only files that have any code in them that deal with the pathway (at least with the current template) is the semantic template index.php and config.rsgallery2.php.
I have been trying different ways to get my goal worked out...but keep hitting brick walls. I can completely remove $rsgDisplay->showRSPathWay(); from the index.php and the pathway completely disappears. Which...is obvious. However I do not want to completely remove the pathway from the gallery.
I have also toyed with config.rsgallery2.php. Meaning, making small changes to the code with no results other than when I removed or tweaked the wrong lines the site completely bombed out. There is a line at the end of the pathway section, which I believe is adding the image title to the pathway.
if (!empty($imgid)) {
$database->setQuery('SELECT title FROM #__rsgallery2_files WHERE id = "'. $imgid . '"');
$imgTitle = $database->loadResult();
$mainframe->appendPathWay($imgTitle);
} // if
If I remove this bit of code, or comment it out...nothing changes. I have even tried completely commenting out the entire section, and even removing it. Still no change. The only change is if I toy with the before mentioned line in the index.php . There's nothing substantial there...just to show the pathway.
Are there any other files involved with appending the image title to the pathway, other than those I have mentioned? Seems strange to me I can completely remove the section regarding the pathway...and it still appears. It is obviously being called from somewhere else...but damned if I can find it. As a side note...I did download a nightly build and made comparisons between the files mentioned above...but didn't notice any differences.
Hopefully I am not missing anything completely obvious. Any input greatly appreciated. Thanks!
Chad