Hi guys,
I no very little about php but the problem I am having is trying to get my slider to appear above my content,
http://www.finding-forrester.com/
[php]<?php
/**
- Template Name: Home Page
*/
add_action( ‘genesis_meta’, ‘dizain_home_meta’ );
/**
-
Homepage meta
*/
function dizain_home_meta() {add_action( ‘genesis_loop’, ‘dizain_home_loop’ );
add_filter( ‘body_class’, ‘dizain_full_width_content’ );
remove_action( ‘genesis_before_content_sidebar_wrap’, ‘dizain_page_title’ );
remove_action( ‘genesis_sidebar’, ‘genesis_do_sidebar’ );
add_action( ‘genesis_after_endwhile’, ‘genesis_posts_nav’ );
}
/**
-
Homepage loop
*/
function dizain_home_loop() {dizain_home_slideshow();
}
genesis();
[/php]
That is all the php from the template file
Many thanks in advance
Jack