I would like to use Frontpage-Slideshow in my latest child theme. The proble is, it use shortcode to add them in my front page.
[FrontpageSlideshow fs_cats=1 fs_template=default]
I do like this
function Slideshow() {
if (is_home() || is_front_page()) {
do_shortcode('[FrontpageSlideshow fs_cats=1 fs_template=default]');
}
}
add_action('thematic_above_indexloop','Slideshow');
Nothing happen... Try search at this forum, just a few topic about this. anyone know how?