Forum Replies Created
-
AuthorPosts
-
seozones
MemberI added in the following to my functions.php page:
//* Register after post widget area genesis_register_sidebar( array( 'id' => 'featured', 'name' => __( 'Featured', 'your-theme-slug' ), 'description' => __( 'This is the featured section.', 'your-theme-slug' ), ) ); //* Hook genesis_before_content_sidebar_wrap add_action( 'genesis_before_content_sidebar_wrap', 'sk_add_featured_section' ); function sk_add_featured_section() { if ( ! ( is_page_template('page_blog.php' ) || is_singular('post') ) ) return; genesis_widget_area( 'featured', array( 'before'=> '<div class="featured widget-area">', 'after' => '</div>', ) ); }
In my widgets area, I then see Featured. I placed the Genesis Responder slider widget in there. in my slider settings, I selected Posts, then included the post ids. But still, the slider does not display on the home page.
Why is this so difficult??? I simply want to add a Genesis slider to a Studio Press theme on the home. This stuff should be more simple than this!!!
seozones
MemberI want to use the Genesis Responsive Slider.
February 12, 2013 at 12:23 pm in reply to: How to add text next to the homepage Subscribe button – Minimal Theme #19851seozones
MemberLike this:
if ( is_home() ) {
echo '<div id="page-title"><div class="wrap"><p>Place text here' . esc_html( get_bloginfo( 'description' ) ) . '<a class="page-title-button" href="#">' . __( 'Subscribe Now', 'minimum' ) . '</a></p></div></div>';
}seozones
MemberOkay, thanks Brad. I have it working now, thanks!
seozones
MemberHi there. Okay, thanks for that. I have the menu up there and having chosen Teal as the color but the menu tab are not teal. What am I doing wrong? http://clearpeak.seozones1.com/
Also, the excerpt on each blog post slider on the home page in the demo appears to be shorter than what I have it set to but when I change it, the characters don't scale back. Where do I adjust that in the dashboard?
seozones
Memberokay, thanks!
-
AuthorPosts