Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
searching for something
hey dudes, im very new to vanilla and i have no clue about the php&plugin architecture (not yet).
i want to replace the "atom" and the "rss2" textlink in the bar to the left with two .gif's ... where can i find those two lines actually?
thx for helping
0
This discussion has been closed.
Comments
extensions/Atom/default.php
and change this line near the top..
$Context->Dictionary['AtomFeed'] = 'Atom';
to this..
$Context->Dictionary['AtomFeed'] = '<img src="url_to_pic" alt="alt text" />';
same goes with the RSS2 text, just go to that extensions folder, and then default.php, and then change the following line like above
$Context->Dictionary["RSS2Feed"] = "RSS2";
<link rel="alternate" type="application/atom+xml" href="somefeedurl" title="<img src="rss2ico.gif" alt="rss" style="border: 0px"/>" />