Best Way To Remove Footer Link In Thesis Theme

by beyluen on January 24, 2009

in WordPress

In this tutorial, I’m going to show you how to remove attribution footer link in WordPress Thesis Theme. Thesis Theme is a well design premium WordPress theme. I’ve used it in this blog since day one. This is very simple tutorial to follow, I promise.

Who Can Remove The Attribution Link?

Be careful, only those people who purchase ‘developer license’ or ‘developer option’ is allowed to remove the footer link. If not you’re breaking membership agreement.

Step By Step Guide To Remove Footer Link

The attribution or the footer link function is called thesis_attribution() and is located in the file thesislibhtmlfooter.php. But wait, we’re not going to modify this file. Instead I’m going to show you another option which is a better one.

# Step 1: Open custom_functions.php

You can open the custom_functions.php file using any text editor. The file is located at thesiscustom folder. This file is specially created by Thesis Theme author for you to customize the theme easily using hook without modifying core engine or file.

# Step 2: Remove Attribution Action

Add the following 1 line of code below “<?php” in the file. After that save the file. This code is pretty self-explanatory. What is does is removing hook function thesis_attribution from the thesis_hook_footer section.

remove_action('thesis_hook_footer', 'thesis_attribution');

# Step 3: Upload custom_functions.php

Finally upload custom_functions.php to your web server. Now type in the URL in your browser and you should be able to see the link is disappeared.

Conclusion

Of course this method is not perfect for those people who don’t know coding or don’t know to touch the code. Anybody interested if you can’t disable the link using WordPress plugin?

Related Posts:

  1. Simple Way To Customize Copyright Footer In Thesis Theme
  2. How To Add Logo In Thesis Theme Header
  3. Customizing Thesis Theme 404 Error Page
  4. How To Add Custom Background Image In Thesis Theme?
  5. How To Change Background Color In Thesis Theme?

If you enjoyed this post, I would be very grateful if you leave a quick comment below or subscribe via email or RSS or follow me on Twitter. Don't miss out on new blogging tips and online business tips! - Bey Luen

{ 24 comments… read them below or add one }

1 yogadork February 18, 2009 at 12:20 pm

this has been an incredible help to a “non-developer”. thank you!

Reply

2 Bey Luen February 18, 2009 at 9:17 pm

@yogadork,
You’re welcome. If you need any technical help, you can always contact me using the contact form.

Reply

3 Stuart King February 23, 2009 at 3:16 am

Help I am trying to put up my first blog and I want the attribution hook for Thesis removed. I tried your directions. No luck. . .

Pasted below is the php page.

thanks.

<a rel=”nofollow” href=”http://delicious.com/save?url=&title=” onclick=”window.open(‘http://delicious.com/save?v=5&noui&jump=close&url=&title=’, ‘delicious’, ‘toolbar=no,width=550,height=550′); return false;” title=”Bookmark this post on del.icio.us”>Bookmark this article on Delicious

<?php
remove_action(‘thesis_hook_footer’, ‘thesis_attribution’);
}

Reply

4 Bey Luen February 23, 2009 at 9:59 am

@Stuart,
You can try to move “remove_action” code before “a rel=’nofollow’”. Please let me know if it is resolved.

Reply

5 John March 14, 2009 at 7:51 am

Thanks, needed this.

Reply

6 Billy Boi May 5, 2009 at 6:00 am

Thanks

Reply

7 Chris @ www-techjobs.com May 17, 2009 at 7:25 am

I totally needed this on one of the sites I’m working on.
I’m a ‘fake it til I make it’ kinda web ‘developer’. I know *just* enough to be ‘dangerous’
it’s posts like this that make me less so.

By the way, I know your layout is simple and clean but you have a great looking blog. I think I need to subscribe if I’m going to keep plugging away at thesis.

many thanks,

chris

Reply

8 IT Buzz July 9, 2009 at 11:27 pm

Its really impressive and useful thanks for sharing useful knowledge.

Reply

9 Tim August 11, 2009 at 7:57 pm

Awesome, thanks. Will give you some props from one of my sites.

Tim

Reply

10 Luanne Quiachon September 15, 2009 at 1:55 pm

Hi Bey,

I followed your instruction on removing the footer attribution link but its not working. Any other tips that you could share?

Thanks!

Luanne

Reply

11 B&B Blackpool October 14, 2009 at 9:58 pm

Great Tip thanks. I have just purchased Thesis and and am looking to blog with it on 2 or 3 web hosts.

I don’t know php but can do a bit of html that said the way you have laid this out is easy to understand and only the very newest novice won’t understand it.

Reply

12 Hairy October 30, 2009 at 5:51 pm

thanks for the wonderful tips, i really need this to remove my blog’s footer link!

Reply

13 Marketing Meerkat November 30, 2009 at 6:59 pm

Great – thanks for your help!

Reply

14 Mercedes-Benz Sydney December 2, 2009 at 9:01 am

I have the developer’s licence but this didn’t work for me. You seem very knowledgeable on the subject – is there another way to remove the Thesis attribution from the footer?

Reply

15 ischinger December 6, 2009 at 1:47 am

custom_functions.php

didn’t work. tried it at the
top
<?php
remove_action(‘thesis_hook_footer’, ‘thesis_attribution’);
// Using hooks is absolutely

bottom

<?php
remove_action(‘thesis_hook_footer’, ‘thesis_attribution’);
}

and before
remove_action(‘thesis_hook_footer’, ‘thesis_attribution’);
<a rel=”nofollow” href=”

no change

….
Also anyone know how to get rid of the “How Smart Is your Theme” thesis-125×125-1 ad?
thanks

Reply

16 Peter December 28, 2009 at 4:45 am

This is a bit off topic, but – as I understand it, the Thesis developers don’t have any legal basis to require people who purchased the non-developer version to leave the attribution link in (because of the way wordpress itself is licensed). In fact, i’ts pretty arrogant of them to claim they can.

Normally I’d say that ethically, you’d be better off leaving the footer link in to help support the developers. In this case, I say remove it.

Reply

17 Sell Wholesale January 3, 2010 at 2:13 pm

I wonder if some of the problems are being caused by the users ADDING the <?php code.

At the top of the custom_functions.php file, you should already see <?php. You can add the custom code directly below that line.

The first two lines of the custom_functions.php file would then read:
<?php
remove_action(‘thesis_hook_footer’, ‘thesis_attribution’);

I hope this helps.

Reply

18 Shahab khan February 19, 2010 at 11:41 pm

Thanks man for the info!
Got it working in the very first try!

Reply

19 Bey Luen February 20, 2010 at 12:06 am

@Shahab,
Good to hear that! :)

Reply

20 Ronnie April 8, 2010 at 5:55 am

I installed the code right from my admin section on my word press blog, It only took about 3 seconds and worked on the first try.

Thanks a lot, Love your site

Reply

21 beyluen April 8, 2010 at 10:19 am

@Roonie,
Great to hear it works for you. Hope you enjoy Thesis Theme. :)

Reply

22 Rodney Daut May 24, 2010 at 5:27 am

Thanks. This worked like a charm on my new blog with Thesis theme. I’ll be adding the copyright notice using your instructions from another post too. :)

Reply

23 Andrew Stolpe May 30, 2010 at 4:40 am

I just followed these instructions and it worked perfectly to remove the “Get smart with the Thesis WordPress Theme from DIYthemes.” part of the footer. Another related question, the link to ‘WordPress Admin’ which links to wp-admin still remains in the footer. How can I get rid of that link as well? Sorry, I’m very new to this WordPress stuff. Thanks.

Reply

24 heather June 4, 2010 at 5:05 am

i have been trying to figure out thesis for awhile now since i bought it. i landed on your site in a google search and its the only one yet that’s made clear common sense to someone who doesn’t know much about web design/scripts and codes, etc.

thanks for an awesome site and concise directions for everyday people!

Reply

Leave a Comment

{ 1 trackback }

Previous post:

Next post: