MyBB Community Forums

Full Version: Removal 'Powered By'
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I installed the Lightbox Mod and with it came a link back to a Pharmaboard, I have found a better alternative to this plugin, Fancyzoom. But even after deactivating the plugin the copyright notice remains, is there a way i can remove it, I've tried templates but it's in the lang files. I tried open global.lang.php and when i go to {$powered_by one Pharmaboard link isn't there? So how can I get rid of it thanks.

This is the plugin copyright i want to remove because I am NOT using the plugin. I WANT to keep the MyBB copyright.
When I had this issue I had to delete the actual plugin file for that link to be removed, so give that a go.
Thanks!
I'll just dig up this thread for my question:

a while back I came across a thread that explained how to replace the "Powered by MyBB" with an image (with the same text) to protect from hackers using search engines to find an mybb forum. I can't seem to find the thread any more. Does anyone know how you can do this? I'm running 2 languages so I would like to be able to replace it for both languages. I also want them to link back to MyBB, just like it is on standard installation.
I just know how to do it for one langauge:

Create a image in PhotoShop or any other image editor and write the "powered by" text. Than open the footer template in the Footer Templates and replace:

{$lang->powered_by} <a href="http://www.mybboard.net" target="_blank">MyBB{$mybbversion}</a>, &copy; 2002-{$copy_year} <a href="http://www.mybboard.net" target="_blank">MyBB Group</a>.<br/>
with
<a href="http://www.mybboard.net" target="_blank"><img src="location/copyright.png"></a><br/>

One problem you will get is that it won't update the version automatically. If you want to make it really fancy you can use a PHP script to gerate:
{$lang->powered_by} <a href="http://www.mybboard.net" target="_blank">MyBB{$mybbversion}</a>, &copy; 2002-{$copy_year} <a href="http://www.mybboard.net" target="_blank">MyBB Group</a>.<br/>

Into a image but for that just Google "Create image PHP".