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
Tagged:

Comments

  • Yes,I would like to modify it too...
  • Maybe you have to check the file /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?
  • Yes, your right but in XHTML 2.0 it will become a valid attribute ;-)
  • Really?!
    I didn't know that. Thanks mate. I feel outdated…
  • thanks, it worked for me :)
  • I do not have /applications/dashboard/views/default.master.php

    I am using the most recent version and need to have this off my site as well. Any help would be appreciated
  • lucluc ✭✭
    edited May 2011
    That's in vanilla 2.0.17.9.

    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
  • edited June 2011
    I use wordpress and it was ok... :)
Sign In or Register to comment.