How to remove Footer thesis theme link and add your own site link in Thesis Theme

by Pascal on December 28, 2009

In this post I am going to show how to remove your footer thesis theme link, and put your own link in footer instead of thesis theme footer link. Why? Because everyone likes to put their own name rights in Footer. Here I am going to show two process in above heading, first one is how to remove footer thesis theme link, and second one is how to add your own link instead of thesis theme footer link.

Remember, you should have thesis developer edition to remove the attribute in footer. In personal edition, you should not remove it.

Watch the video tutorial for complete guidance to remove footer thesis theme link and add your own site link thesis theme.

If you can’t watch the video, you can follow the below steps also for guidance.

1. How to remove footer thesis theme link?

  1. First you have to go your wordpress admin.
  2. In wordpress admin, go to thesis option.
  3. In thesis option, go to custom file editor, click Custom_funtion.php and paste below code or use FTP and put below code in launch.php. (Why I prefer FTP. At the time of accessing Custom_funtion.php via your wordpress admin, it is showing some warning message. That’s why I prefer FTP)
/* Remove footer link*/

remove_action('thesis_hook_footer', 'thesis_attribution');

2. How to add your own link instead of thesis theme footer link?

  1. First you have to go your wordpress admin.
  2. In wordpress admin, go to thesis option.
  3. In thesis option, go to custom file editor, click Custom_funtion.php and paste below code or use FTP and put below code in launch.php. (Why I prefer FTP. At the time of accessing Custom_funtion.php via your wordpress admin, it is showing some warning message. That’s why I prefer FTP)
/* Add your own footer link*/

add_action('thesis_hook_footer', 'custom_footer');

function custom_footer() {
?>
<p>Copyright &copy 2009 <a href="<?php bloginfo('http://fourblogger.com'); ?>"><?php bloginfo('FourBlogger'); ?></a>. All rights reserved.</p><br/>
<?php
}

Before removing Footer Link

Before adding Footer link

After  adding Footer Link

After adding own footer link

If you got any problem in above process, write in comment box. I will help you. If it is useful for you, share your experience in comment box.

More Video Resources

Related Tutorials:

  1. How to Add Search Box in Thesis Theme Navigation Bar
  2. Thesis Theme Customization Tutorials for Footer Round-Up
  3. Seven tips for changing color in Thesis Theme
  4. How to add Categories in Footer of Thesis Theme
  5. Widgetized Thesis Theme-Header, Content box and Footer

{ 24 comments… read them below or add one }

sürücü kursu December 29, 2009 at 9:43 AM

a good text. thanks

Reply

Pascal December 29, 2009 at 1:24 PM

Thanks. Do you run website using Thesis?

Reply

nirav December 31, 2009 at 12:11 PM

hi I want to know how i can show a category all post (with there content) in single page in thesis theme
I am using thesis theme version 1.5.1 sp pls give me a solutuion.
thanks in advance.

Reply

Pascal December 31, 2009 at 7:34 PM

I am not sure how version 1.5.1 works. Upgrade your thesis so that you can use more and more thesis new resources available in online.

But if you go for thesis forum, you will get some help as there long time thesis users available.

Reply

Pascal January 7, 2010 at 10:42 AM

Hi Nirav. Here is our new post. Is this the thing you asked? If not Could you please explain little more?
http://fourblogger.com/how-to-show-a-category-post-in-a-single-page-in-thesis-theme/

Reply

Therese January 5, 2010 at 4:17 PM

Hi Pascal,
Thanks for the tutorials! I was able to remove the Thesis footer, that worked just fine, but when I tried to add a custom footer I ran into trouble. The link to my website in the footer directs to a 404 page, and not to my homepage. Any advice on how to fix this?

I would also like to add a link that directs to the appropriate copyright law. How would I do this?

The link should read “Lov om opphavsrett til åndsverk”, and you would click through to the following site: http://lovdata.no/cgi-wift/wiftldles?doc=/usr/www/lovdata/all/nl-19610512-002.html&dep=alle&kort+,+titt=%C5ndsverksloven&amp;

I would really appreciate your help!

Best regards, Therese

Reply

Pascal January 5, 2010 at 7:40 PM

Hi Therese. Thanks for following tutorials.

I am not sure why did you get 404 page. Do one thing. First post the links you required in footer and then inform me. I will look what is going wrong with links. Sure it should be some very basic problem. I am ready to help you.

Reply

Therese January 7, 2010 at 3:56 PM

Hi Pascal,

The problem is that I don´t know HOW to post a link in the footer. I´m new to Thesis and any type of code. Perhaps you can help?

Thanks,
Therese

Reply

Pascal January 7, 2010 at 6:45 PM

Hi Therese, Please contact us me through youtube channel I am ready to help you.

Thanks.

Reply

Sergio January 18, 2010 at 7:46 PM

Thank you for this tutorial, but it works only if I modify the code in this way:

/*Add your own footer link*/

add_action(‘thesis_hook_footer’, ‘custom_footer’);

function custom_footer() {
?>
Copyright &copy 2009 <a href="”>Blog_name. All rights reserved.
<?php
}

I wrote the code onto custom_functions.php, is there a reason you put the code in launch.php?

Thank you very much

Reply

Sergio January 18, 2010 at 7:50 PM

Sorry for this duplicate but there was a an error in my previous post.
_________________________________________________

Thank you for this tutorial, but it works only if I modify the code in this way: :/*Add your own footer link*/

add_action(‘thesis_hook_footer’, ‘custom_footer’);

function custom_footer() {
?>
Copyright &copy 2009 <a href="”>Blog_name. All rights reserved.
<?php
}

I wrote the code onto custom_functions.php, is there a reason you put the code in launch.php?

Thank you very much

Reply

toplist February 1, 2010 at 2:26 PM

a good text. Thanks for article and share

Reply

toplu bilgi February 1, 2010 at 5:07 PM

Thanks for article and share. Thanks admin.

Reply

Lee Hughes February 17, 2010 at 11:09 PM

Would I use this method to create links in my footer?

Am planning on putting a serious of links in my footer. Is this is best method?

Thansk

Reply

Suresh February 18, 2010 at 12:18 AM

hai lee,
you can use the same method for your series of links in footer, also you can style it according to your wish..

Reply

Mike February 21, 2010 at 3:59 PM

How can I remove the the footer from a prolet template? I tried adjusting your code, but without luck. Thanks!

Reply

Kris March 30, 2010 at 8:13 AM

how about the wordpress admin link in footer? how to delete this?

Reply

Suresh March 30, 2010 at 10:31 AM

hai,

by hacking the core you can remove wordpress admin link using ftp software.

1.login your ftp
2.Find this path
yourdomain.com/wp-content/themes/thesis/lib/functions/footer.php
3. open the footer.php file. This file you have the function called thesis_admin_link() just disable thsi function by adding double slash in front. or remove this function.
example //thesis_admin_link();
4.save this file now your admin link will removed

Reply

Kris March 31, 2010 at 6:45 AM

hello,
There is no footer.php inside the functions folder.. I saw it in domainname.com/wp-content/themes/thesis_16/footer.php , but in footer.php , I cannot see the code thesis_admin_link().. pls reply asap, cause I need this.. thank u very much!

Reply

Suresh March 31, 2010 at 9:28 AM

hai,
The path is domainname.com/wp-content/themes/thesis_16/lib/html/footer.php. If you are ready to upgarde thesis 1.7 after the upgrade you will do it..

Reply

Kris March 31, 2010 at 10:50 AM

Thank u very much! ^_^
Keep up the good work & God Bless..

Reply

Pascal March 31, 2010 at 12:44 PM

Thanks for your kind words.

Reply

Shamim April 13, 2010 at 2:17 PM

It’s a easiest tips to remove the footer link from Thesis.

tnx man……for doing this blog.

Hope to see here again.

Reply

Suresh April 13, 2010 at 4:48 PM

hai shamim,

thanks.. we have more thesis tutorials at fourblogger youtube channel

Reply

{ 1 trackback }

You are now listed on FAQPAL
December 28, 2009 at 4:18 PM

Leave a Comment

Page 1 of 0