dankerman666
Regular Member
- Feb 17, 2011
- 386
- 234
Hey OG EXE 
I have a weird problem with a theme I'm using from studiopress, I update to the new genesis framework and also grabbed up the updated theme but my widget area home top #2 will not show anything from a text widget to a slide deck slider.
Any thoughts on what could cause this. I will give you admin access if you could help a brotha out
I have a feeling the problem is here:
I have a weird problem with a theme I'm using from studiopress, I update to the new genesis framework and also grabbed up the updated theme but my widget area home top #2 will not show anything from a text widget to a slide deck slider.
Any thoughts on what could cause this. I will give you admin access if you could help a brotha out
I have a feeling the problem is here:
Code:
* This file handles the output on the homepage.
*/
add_action( 'genesis_after_header', 'enterprise_home_top_helper' );
/**
* Conditionally add Home Top #1 (home-top-1) sidebar and WP-Cycle.
*/
function enterprise_home_top_helper() {
echo '<div id="home-top-bg"><div id="home-top"><div class ="wrap">';
if ( is_active_sidebar( 'home-top-1' ) ) {
echo '<div class="home-top-1">';
dynamic_sidebar( 'home-top-1' );
echo '</div><!-- end .home-top-1 -->';
}
echo '<div class="home-top-2">';
if ( function_exists( 'wp_cycle' ) )
wp_cycle();
echo '</div><!-- end .home-top-2 -->';
echo '</div><!-- end .wrap --></div><!-- end #home-top --></div><!-- end #home-top-bg -->';
Last edited: