post

Remove Thesis Attribution Link from Blog Footer

This post is mainly a reference for me regarding the Thesis Theme, but if you do find it useful, please re-tweet or bookmark.

Instructions how to remove the “Get smart with the Thesis WordPress Theme from DIYthemes.” from your Thesis Theme install.

Add the following hook to the custom_functions.php file to remove the Thesis Attribution link:

remove_action('thesis_hook_footer', 'thesis_attribution');

That’s it! Simple enough.

post

How To Move Thesis Theme Navigation Bar Below Header

This post is mainly a quick-reference for myself, but many people have the same question: How do I move the Thesis Theme navigator bar below the header on my wordpress site?

In your custom_functions.php file (which is even easier to update in Thesis 1.6) add the following lines of code:

/*move the nav bar below the header*/
remove_action('thesis_hook_before_header', 'thesis_nav_menu');
add_action('thesis_hook_after_header', 'thesis_nav_menu');

Voila! That’s all there is to it.