2

Been spending a couple of hours trying to remove this texts on the footer "Get smart with the Thesis" on my wordpress site. I used thesis theme. I've tried looking for the footer file containing the texts but no luck. I also tried removing it from the hooks. "custom_functions.php" but still doesn't work. Any help would greatly appreciated.

Artjom B.
  • 61,146
  • 24
  • 125
  • 222
mr.b
  • 2,708
  • 8
  • 39
  • 64

4 Answers4

2

This might help

http://www.sugarrae.com/thesis-hooks-dummies-tutorial/#change-footer

/* Custom Footer Hook */
remove_action('thesis_hook_footer', 'thesis_attribution');
function add_custom_footer () {
?>
<p>© 2008 Ourblog.com – All rights reserved. – <a href="http://www.ourblog.com/privacy-policy/">Privacy Policy</a></p>
<p>No content on this site may be reused in any fashion without written permission from Ourblog.com or whatever you want your footer to include</p>
<?php
}
add_action('thesis_hook_footer', 'add_custom_footer'); 
Robert Harvey
  • 178,213
  • 47
  • 333
  • 501
Sabeen Malik
  • 10,816
  • 4
  • 33
  • 50
0

For thesis 1.x version you have to add a code to remove it from the footer. But for the latest thesis 2 version you can drag and delete that footer attribution box using the skin editor option of the thesis 2 version. For more info refer to these posts

Hope this will be helpful.

Gowtham V
  • 1
  • 1
0

Go to the following directory:

\wordpress_root\wp-content\themes\your_theme_name

In this folder is a file called footer.php

In this file you will find the text you want to remove.

SORRY Did not see that you did this already:

without downloading the theme I am not sure. Please post the footer.php file so we can help.

Todd Moses
  • 10,969
  • 10
  • 47
  • 65
  • Thank you for your reply. This doesn't work either. The text is not in the footer.php. – mr.b Sep 16 '10 at 23:04
0

Its very simple. You can use Thesis Hooks to do that.

remove_action('thesis_hook_footer', 'thesis_attribution');

Read More here

Vijay Sharma
  • 373
  • 1
  • 10