Hi
Yes I did try this. This is what my function.php looks like:
/*
*
* Add the image gallery
*
*/
function remove_featured_gallery_scripts() {
remove_action('wp_head', 'gallery_styles');
}
add_action('init','remove_featured_gallery_scripts', 1);
function addscripts_featured_gallery() {
if(!function_exists(gallery_styles)) return;
gallery_styles();
}
add_action('wp_head', 'addscripts_featured_gallery', 12);
function add_image_gallery(){
include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php');
}
add_action('thematic_above_indexloop','add_image_gallery',0);
/*
*
* Show only posts marked as 'front' category to show on the homepage
*
*/
function only_front_posts() {
if(is_home()|| is_front_page()) {
query_posts ($query_string . '&cat=101');
}
}
add_action('thematic_indexloop','only_front_posts',3);
The gallery appears as a big black border of box but my posts disappear from only_front_posts(). If I comment out add_image_gallery() then my posts appear. I don't know what I am doing wrong.
Thanks for you help.