{ 19 comments… read them below or add one }

aviationMY February 6, 2010 at 1:58 PM

hi Pascal,

long time no see…this blog had gave me such a lot of knowledge specially in Thesis customization and Wordpress self-hosted generally!

btw, i just want to share something and ask something to you too…haha

regarding thesis hook…its a best clarification if you could providing the diagram and where are the hooks hook on at!

eg:http://speedtech.it/wp-content/uploads/2009/04/thesis_hooks_desc_post.png

and a question..regarding XAMPP, for clarification.

so its mean that we can do customization offline(not connected to the internet) and if we got an error when in custom_function.php, we can revert it to previous code.???If so, this is a good application to try out!.

anyway, thank you for helping me with the customization…will inform you as the site has finish customizing!.

Thank You FourBlooger.com

Reply

Pascal February 6, 2010 at 2:15 PM

Thanks for the image link. We will add this link in post also.

Yes. You can customize or edit posts in offline with speed and safe.

Reply

Vivek February 6, 2010 at 4:00 PM

Thanks for this tutorial. This tutorial is much needed for me.
thanks again

Reply

Pascal February 6, 2010 at 4:31 PM

Thanks Vivek.

Reply

Jaydip Parikh February 7, 2010 at 4:16 PM

One more good article from you man… Well keep it up.

Reply

Pascal February 7, 2010 at 6:49 PM

Thanks jaydip.

Reply

Thesis Theme Design March 12, 2010 at 11:54 AM

I can’t but give you a big Thanks for accumulating some basic but mostly needed Thesis Tweaks in one post.

Hope you will serve more awesome post like this.

Reply

Suresh March 12, 2010 at 3:45 PM

hai,

thanks..you can get more videos in our youtube channel

Reply

Dimas April 21, 2010 at 11:55 AM

As I am starting to use Thesis more, I have two good recommendation for using hooks:

1) Use Thesis OpenHooks plugin for smaller bits of code (simple markup)

2) If you have large bits of code, add your hook action in the custom_function.php, and in the callback function for the hook you should use a PHP include_once/require_once statement to include a external php file … for instance:

remove_action(‘thesis_hook_footer’, ‘thesis_attribution’);
add_action(‘thesis_hook_footer’, ‘custom_thesis_footer’);
function custom_thesis_footer() { require_once ‘footer.php’; }

you should then place your “footer.php” file in the “custom” folder, the nice thing about doing this is that you can edit the file in your favorite editor and you can also edit it in the wordpress thesis file editor.

Reply

Suresh April 21, 2010 at 9:45 PM

dimas,

Thanks for sharing these nice tips i will try this..

Reply

Saif April 21, 2010 at 2:20 PM

I have a problem…
I have a plugin That Adds Keyboard Layout at the bottom of Comment Box..
In Thesis 1.6 I used this line in thesis’s comments.php

but when i enter this code in thesis 1.7’s comments.php it shows error…
Tell me how to use this code via custom_functions.php?

Reply

Suresh April 21, 2010 at 10:29 PM

hai saif,

don’t try to hack the core of the theme while upgrading it may cause problem. Add your code instead of comments.php file use in custom_function.php with help of hooks. for your keyboard layout use the hook thesis_hook_after_comment_box.
it will work…

Reply

Saif April 22, 2010 at 9:59 AM

But I Don’t Know how to write the codes !
Can U make it for me ?
Plz!

Reply

Suresh April 22, 2010 at 7:40 PM

hai saif,

I give general structure for custom function code for you query..
paste your keyboard layout code mentioned in the link…
copy and paste this code in custom_function.php file
cet the code here keyboard layout

Reply

Saif April 22, 2010 at 8:11 PM

Millions Of Millions Of THanks Mate !
You have solved the problem …
How can I Return It? :D
COme To My House I Will Serve Some Food !

Reply

Suresh April 22, 2010 at 9:16 PM

hai saif,

Thanks for your words… You can do thesis customization by yourself by watching our thesis tutorials on youtube channel

Reply

johnny July 4, 2010 at 4:14 PM

I want to change next and previous post text to something like next video and previous video, any ideas how to change that? appreciate for the helps, thanks.

Reply

john August 8, 2010 at 7:44 AM

I’m just starting to use Thesis for a new website — nothing much there yet, structure not even finished.
I have never built an entire site with WP so this is really interesting and a challenge to my 65 year old brain.
While I can see the advantage of Hooks in many instances and have already used some simple hooks, I can’t understand why using them to change the header image is more advantageous than a simple .custom #header.
All I did was added this to the custom.css
.custom #header {
height:200px;
padding-top:0;
padding-bottom:0;
background:url(images/layout/banner.png) center left no-repeat;
border-width:0;
}
While it’s probably not as sophisticated as hooks, I felt like it was much safer for someone who knows virtually nothing about php.
Am I missing something? Thanks for your time

Reply

Dimas August 9, 2010 at 9:08 PM

John, I use Thesis for websites also (example: http://noonetime.com/) … I think what you are doing with CSS is perfectly legit… my thoughts is do what works and what is elegant, however the most powerful feature of thesis is its hooks. I think the more you use it, the more you will see.

Reply

Leave a Comment

Page 1 of 11