Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
How do I change Powered by Vanilla link at the header and footer
This is driving me nuts. I have firerfox and firerbug installed but for the life of me I cannot find the index.html file to edit this string.
< div id="site-generator">< a href="http://vanillaforums.org" >Powered by Vanilla and < a href="http://www.netfirms.com/">Netfirms< /a>*/div>
I would like to add this < a target="_blank" to the links or remove them all together because they keep stealing people away from my site.
Example New:
< div id="site-generator">< a target="_blank" href ="http://vanillaforums.org" >Powered by Vanilla< /a> and < a target="_blank" href ="http://www.netfirms.com/" >Netfirms< /a>< /div>
Or what open-source programs are you guys using to do string searches in HTML, PHP, CSS type files. Any information would be appreciated.
Thank you
Rookie2010
< div id="site-generator">< a href="http://vanillaforums.org" >Powered by Vanilla and < a href="http://www.netfirms.com/">Netfirms< /a>*/div>
I would like to add this < a target="_blank" to the links or remove them all together because they keep stealing people away from my site.
Example New:
< div id="site-generator">< a target="_blank" href ="http://vanillaforums.org" >Powered by Vanilla< /a> and < a target="_blank" href ="http://www.netfirms.com/" >Netfirms< /a>< /div>
Or what open-source programs are you guys using to do string searches in HTML, PHP, CSS type files. Any information would be appreciated.
Thank you
Rookie2010
Tagged:
1
Comments
/applications/dashboard/views/default.master.php
out.Change line
echo Wrap(Anchor(T('Powered by Vanilla'), C('Garden.VanillaUrl')), 'div');
to
echo Wrap(Anchor(T('Powered by Vanilla'), C('Garden.VanillaUrl'), NULL, array('target' => '_blank')), 'div');
or anything you want.
btw, I think target attribute is invalid in XHTML 1.0 Strict, isn't it?
I didn't know that. Thanks mate. I feel outdated…
I am using the most recent version and need to have this off my site as well. Any help would be appreciated
ls applications/dashboard/views/*master* applications/dashboard/views/admin.master.php applications/dashboard/views/deverror.master.php applications/dashboard/views/none.master.tpl applications/dashboard/views/atom.master applications/dashboard/views/empty.master.tpl applications/dashboard/views/rss.master applications/dashboard/views/default.master.php applications/dashboard/views/error.master.php applications/dashboard/views/setup.master