Not Working with Genesis?
-
It looks like a great plugin. I’m currently running a Genesis child theme and after activating it and selecting the ‘Fixed’ option for two widgets, it doesn’t seem to do anything at all. I don’t know but I assume after reading through here that it must be that the sidebar widget id’s aren’t registered but I’m not sure how to do that with genesis.
In my functions I found the homepage sidebars, but there’s no registered id’s for my Primary Sidebar on posts and pages.
/** Unregister layout settings */ genesis_unregister_layout( 'content-sidebar-sidebar' ); genesis_unregister_layout( 'sidebar-content-sidebar' ); genesis_unregister_layout( 'sidebar-sidebar-content' ); /** Unregister secondary sidebar */ unregister_sidebar( 'sidebar-alt' ); genesis_register_sidebar( array( 'id' => 'home-slider', 'name' => __( 'Home - Slider', 'executive' ), 'description' => __( 'This is the slider section on the home page.', 'executive' ), ) ); genesis_register_sidebar( array( 'id' => 'home-top', 'name' => __( 'Home - Top', 'executive' ), 'description' => __( 'This is the top section of the home page.', 'executive' ), ) ); genesis_register_sidebar( array( 'id' => 'home-cta', 'name' => __( 'Home - Call To Action', 'executive' ), 'description' => __( 'This is the call to action section on the home page.', 'executive' ), ) ); genesis_register_sidebar( array( 'id' => 'home-middle', 'name' => __( 'Home - Middle', 'executive' ), 'description' => __( 'This is the middle section of the home page.', 'executive' ), ) );
How and where would I add the <li id=”%1$s” in the before_widget parameter?
My site is https://goo.gl/1KbHb
Viewing 15 replies - 1 through 15 (of 15 total)
Viewing 15 replies - 1 through 15 (of 15 total)
- The topic ‘Not Working with Genesis?’ is closed to new replies.