hi, i'm trying to do the following - add something above the index loop, but it's not working. It works if I change thematic_above_indexloop to something like thematic_belowheader but that's not where I want it. Any idea whats going on?
function childtheme_welcome_blurb() {
if (is_home() || is_front_page()) {
include (ABSPATH . '/wp-content/plugins/unpointzero-slider/Slider.php');
}
}
// Now we add our new function to our Thematic Action Hook
add_action('thematic_above_indexloop','childtheme_welcome_blurb',2);