Probably the easiest way would be to delete the following from gallery.php
THIS IS THE FULL LINE $rss_tag = '<a href="'.$rss_link.'"><img src="' . $config["baseurl"] . 'graphics/rss.gif" title="'.$rss_tooltip.'" alt="RSS 2.0 Feed" style="margin:0; padding:0; display:inline" /></a>';
skeeboo: That doesn't work, I get a parse error on line 671.
I'm also trying to remove the "powered by Plogger" because it's in the footer of the index page instead, and I'd like to add some verbiage below the album list. Can anyone tell me how to do this?
For Skeeboo's solution, it is important to note that the code
SO YOU'RE LEFT WITH THIS $rss_tag = '';
is two single quotes next to each other, not one double quote. That will solve your parse error. In fact, you can remove that line altogether if you want.
Or just add a CSS display none rule to gallery.css
#link-back { display: none; }
You can turn it back on later if you want. Although it is not required to have the link back on your gallery, we appreciate you having one somewhere on your website to show your support for our free software.
Thanks for the help -- I did have it as a double quote -- but I'm still getting a parse error. Perhaps this is a sign I should give up.
Incidentally, I'm wanting to remove the link from the gallery because it's redundant. You can check out http://cathcoll.net to see that I've actually got it in the overall site footer.
Sonria. Sorry for the misunderstanding. It should NOT be a double quote. It needs to be two double quotes or two single quotes. You can also just keep it simple and delete that whole $rss_tag = ... line completely.
That's what I meant. Even after I changed it to two singles and then tried deleting the line entirely, I still got parse errors. That's what makes me think it's either my hosting provider or my lack of PHP skills... :/