• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

kilerb

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password
  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 20 posts - 1 through 20 (of 59 total)
1 2 3 →
  • Author
    Posts
  • November 17, 2015 at 1:44 pm in reply to: Short video as homepage background #171351
    kilerb
    Member

    I tried using this plugin... It seems to work if I implement it on a single page or post as seen here... http://comedycodes.com/index.php/sample-page/

    But in the settings when I tell it to work on the homepage, no dice. Is it because the homepage is all widgets? The background is still the same as the sample page above though. You'd think it would work everywhere. Any idea why it won't work on the home page of that site?

    Thanks!!

    August 24, 2015 at 2:04 pm in reply to: Parallax Pro – Add Icons Inline with Navigation Menu #163341
    kilerb
    Member

    Hi, it looks like the answer might have been marked private. Was hoping to do what they were saying above... Just like on this site... http://reneecarlino.com/
    I tried the code above but it didn't put the icons to the right of the menu. Any ideas? Thanks!!!! 🙂

    August 11, 2015 at 12:43 pm in reply to: Parallax Pro Background Image Jumps #162059
    kilerb
    Member

    Ever figure this out? I’m trying to avoid this too in the 411 theme… Is it possible to have backstretch active on desktop browsers but change the css so it's a different background on mobile versions only that isn’t backstretch so it doesn’t jump when you scroll?

    Thanks!

    August 11, 2015 at 12:36 pm in reply to: Background Image 'Jumps' on when viewing on phone – Sixteen Nine #162057
    kilerb
    Member

    Ever figure this out? I'm trying to avoid this too in the 411 theme... Is it possible to have backstretch active on desktop browsers but css a different background in on mobile versions only that isn't backstretch so it doesn't jump when you scroll?

    Thanks!

    August 10, 2015 at 12:35 pm in reply to: Post Titles Not Showing #161956
    kilerb
    Member

    Yep... I've been using that plugin a lot and had no idea it also toggled post titles. I thought it just removed page titles. That fixed it. Thanks so much! I don't suppose you might know how to make it so I can have a featured image show to the left of each post too, do you? Was my 2nd inquiry above... The old version of Streamline did this. For some reason this latest version put the 150x150 image above the post. Leaves a lot of grey area that doesn't make much sense. Would love to just get it to show to the left of the post. Thanks!!!

    August 8, 2015 at 1:29 pm in reply to: Post Titles Not Showing #161794
    kilerb
    Member

    Ahhh, thanks... I normally use the "genesis title toggle" for that, but I might have tried something else prior to knowing about that and altered it a long time ago... Here's the functions.php file... Tried to find something I commented out regarding title, but wasn't sure. Thanks!!!

    <?php
    //* Start the engine
    include_once( get_template_directory() . '/lib/init.php' );
    
    //* Set Localization (do not remove)
    load_child_theme_textdomain( 'streamline', apply_filters( 'child_theme_textdomain', get_stylesheet_directory() . '/languages', 'streamline' ) );
    
    //* Child theme (do not remove)
    define( 'CHILD_THEME_NAME', __( 'Streamline Pro Theme', 'streamline' ) );
    define( 'CHILD_THEME_URL', 'http://my.studiopress.com/streamline/' );
    define( 'CHILD_THEME_VERSION', '3.0.1' );
    
    //* Add HTML5 markup structure
    add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list' ) );
    
    //* Add viewport meta tag for mobile browsers
    add_theme_support( 'genesis-responsive-viewport' );
    
    //* Enqueue PT Sans Google font
    add_action( 'wp_enqueue_scripts', 'streamline_google_fonts' );
    function streamline_google_fonts() {
    
    	wp_enqueue_style( 'google-fonts', '//fonts.googleapis.com/css?family=PT+Sans:400,700', array(), CHILD_THEME_VERSION );
    	
    }
    
    //* Enqueue Responsive Menu Script
    add_action( 'wp_enqueue_scripts', 'streamline_enqueue_responsive_script' );
    function streamline_enqueue_responsive_script() {
    
    	wp_enqueue_script( 'streamline-responsive-menu', get_bloginfo( 'stylesheet_directory' ) . '/js/responsive-menu.js', array( 'jquery' ), '1.0.0' );
    
    }
    
    //* Add support for additional color style options
    add_theme_support( 'genesis-style-selector', array( 
    	'streamline-pro-blue'  => __( 'Streamline Pro Blue', 'streamline' ), 
    	'streamline-pro-green' => __( 'Streamline Pro Green', 'streamline' ),
    ) );
    
    //* Add new image sizes
    add_image_size( 'post-image', 760, 360, TRUE );
    add_image_size( 'widget-image', 295, 100, TRUE );
    
    //* 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' );
    
    //* Add support for custom background
    add_theme_support( 'custom-background' );
    
    //* Add support for custom header
    /* add_theme_support( 'custom-header', array(
    	'header_image'    => '',
    	'header-selector' => '.site-title a',
    	'header-text'     => false,
    	'height'          => 445,
    	'width'           => 1140,
    ) );  */
    
    //* Add support for 3-column footer widgets
    add_theme_support( 'genesis-footer-widgets', 3 );
    
    //* Reposition the breadcrumbs
    remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' );
    add_action( 'genesis_before_content_sidebar_wrap', 'genesis_do_breadcrumbs' );
    
    //* Customize breadcrumbs display
    add_filter( 'genesis_breadcrumb_args', 'streamline_breadcrumb_args' );
    function streamline_breadcrumb_args( $args ) {
    	$args['home'] = __( 'Home', 'streamline' );
    	$args['sep'] = ' ';
    	$args['list_sep'] = ', '; // Genesis 1.5 and later
    	$args['prefix'] = '<div class="breadcrumb">';
    	$args['suffix'] = '</div>';
    	$args['labels']['prefix'] = '<span class="icon-home"></span>';
    	return $args;
    }
    
    //* Remove default post image
    remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );
    
    //* Add post image above post title
    /* add_action( 'genesis_entry_header', 'streamline_post_image', 1 );
    function streamline_post_image() {
    
    	if ( is_page() || ! genesis_get_option( 'content_archive_thumbnail' ) )
    		return;
    	
    	if ( $image = genesis_get_image( array( 'format' => 'url', 'size' => genesis_get_option( 'image_size' ) ) ) ) {
    		printf( '<a href="%s" rel="bookmark"><img class="post-photo" src="%s" alt="%s" /></a>', get_permalink(), $image, the_title_attribute( 'echo=0' ) );
    	}
    	
    } */
    
    //* Reposition the post info function
    remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
    add_action( 'genesis_entry_header', 'genesis_post_info', 2 );
    
    //* Customize the post info function
    add_filter( 'genesis_post_info', 'post_info_filter' );
    function post_info_filter( $post_info ) {
    
    	if ( !is_page() ) {
        	$post_info = '[post_author_posts_link] [post_date] [post_comments] [post_edit]';
        	return $post_info;
    	}
    	
    }
    
    //* Add the after entry section
    add_action( 'genesis_entry_footer', 'streamline_after_entry', 10 );
    function streamline_after_entry() {
    	
    	if ( ! is_singular( 'post' ) ) return;
    	
    	genesis_widget_area( 'after-entry', array(
    		'before' => '<div class="after-entry widget-area">',
    		'after'  => '</div>',
       ) );
       
    }
    
    //* Modify the size of the Gravatar in the author box
    add_filter( 'genesis_author_box_gravatar_size', 'streamline_author_box_gravatar_size' );
    function streamline_author_box_gravatar_size( $size ) {
    
        return '80';
        
    }
    
    //* Remove comment form allowed tags
    add_filter( 'comment_form_defaults', 'streamline_remove_comment_form_allowed_tags' );
    function streamline_remove_comment_form_allowed_tags( $defaults ) {
    
    	$defaults['comment_notes_after'] = '';
    	return $defaults;
    	
    }
    
    // Register widget areas
    genesis_register_sidebar( array(
    	'id'          => 'home-featured-1',
    	'name'        => __( 'Home - Featured 1', 'streamline' ),
    	'description' => __( 'This is the first featured column on the homepage.', 'streamline' ),
    ) );
    genesis_register_sidebar( array(
    	'id'          => 'home-featured-2',
    	'name'        => __( 'Home - Featured 2', 'streamline' ),
    	'description' => __( 'This is the second featured column on the homepage.', 'streamline' ),
    ) );
    genesis_register_sidebar( array(
    	'id'          => 'home-featured-3',
    	'name'        => __( 'Home - Featured 3', 'streamline' ),
    	'description' => __( 'This is the third featured column on the homepage.', 'streamline' ),
    ) );
    genesis_register_sidebar( array(
    	'id'          => 'after-entry',
    	'name'        => __( 'After Entry', 'streamline' ),
    	'description' => __( 'This is the after entry section.', 'streamline' ),
    ) );genesis_register_sidebar( array(	'id'          => 'before-header',	'name'        => __( 'Before Header', 'theme-name' ),	'description' => __( 'This is the before header widget area.', 'theme-name' ),) );add_action( 'genesis_before_header', 'bg_before_header_widget_area' );function bg_before_header_widget_area() {	genesis_widget_area( 'before-header', array(		'before' => '<div class="before-header widget-area"><div class="wrap">',		'after'  => '</div></div>',	) );}
    
    /**
     * Filter the genesis_seo_site_title function to use an image for the logo instead of a background image
     * 
     * The genesis_seo_site_title function is located in genesis/lib/structure/header.php
     * @link http://blackhillswebworks.com/?p=4144
     *
     */
    
    	add_filter( 'genesis_seo_title', 'bhww_filter_genesis_seo_site_title', 10, 2 );
    
    	function bhww_filter_genesis_seo_site_title( $title, $inside ){
    	 
    		$child_inside = sprintf( '<a href="%s" title="%s"><img src="'. get_stylesheet_directory_uri() .'/images/fullheader.jpg" title="%s" alt="%s"/></a>', trailingslashit( home_url() ), esc_attr( get_bloginfo( 'name' ) ), esc_attr( get_bloginfo( 'name' ) ), esc_attr( get_bloginfo( 'name' ) ) );
    	 
    		$title = str_replace( $inside, $child_inside, $title );
    	 
    		return $title;
    		
    	}
    August 5, 2015 at 4:09 pm in reply to: Big Space after Header on Mobile – Streamline #161521
    kilerb
    Member

    Hi Marybaum 🙂 Thanks so much for taking the time to give me all that info! I really appreciate it. So I tried to make a quick logo to test it out. I placed it here... http://www.rodellegrazie.com/images/mobileheader.jpg

    I think I'm doing something wrong though. I've tried to place the header replacement code in the mobile area... But it seems to not work. I'm probably doing it wrong. This is what I put.... What can I change to get it to use the new header image? Thanks!

    @media only screen and (max-width: 767px) {
    
    	.five-sixths,
    	.four-sixths,
    	.one-fourth,
    	.one-half,
    	.one-sixth,
    	.one-third,
    	.three-fourths,
    	.three-sixths,
    	.two-fourths,
    	.two-sixths,
    	.two-thirds {
    		margin: 0;
    		width: 100%;
    	}
    	
    	.entry-meta {
    		display: none;
    	}
    	
    	.entry-footer .entry-meta {
    		display: block;
    	}
    	
    	.header-image .site-header .site-title a {
    		/* background-size: contain !important; */
    		background: url(http://www.rodellegrazie.com/images/mobileheader.jpg) no-repeat;
    	} 
    	
    	.responsive-menu {
    		display: none;
    	}
    	
    	#responsive-menu-icon {
    		display: block;
    	}
    	
    	background: url(http://www.rodellegrazie.com/images/mobileheader.jpg) no-repeat;
    
    August 4, 2015 at 8:09 pm in reply to: Featured Images in Streamline are confusing me #161447
    kilerb
    Member

    I'm trying to do this again on my other site. This link above does show me how to remove the image above the posts... But how do I add a 150x150 featured image to the left of the post? Thanks a lot! 🙂

    June 2, 2015 at 5:03 pm in reply to: Add Widget Area Above Header Area #154614
    kilerb
    Member

    Hi Brad... I tried the link you posted and pasted the "for genesis users" in my functions.php file. Not sure why, but it didn't work for me. There's not even a new widget listed in the widgets area of my dashboard. I'm on the latest version of Streamline (html 5) Does that matter? I know the hooks changed awhile ago... But from all the tutorials I find, none of them seem to be working for me. At best I get a new widget in the widgets area, but not above the header. I just installed Streamline today. So, I haven't really messed with it yet. The old version (a year or 2 ago) of Streamline had a "right header" widget that actually placed the icons in the header, which was cool. But I don't see that in the newest version. Thanks a lot!

    February 21, 2015 at 11:57 am in reply to: Woocommerce freezing site with Streamline at checkout #141663
    kilerb
    Member

    Thanks... I'll look into that next. I added a sidebar so I could have the slider at the very top of the site. Never used that plugin before. Always did it this way. I'll check that out. I'm on hold with support right now.

    Andrea was just looking at the site and she said when she added a product she saw a console error...
    http://nudistcomedy.com/wp-admin/admin-ajax.php Failed to load resource: the server responded with a status of 500 (Internal Server Error)

    The admin-ajax.php script is one commonly used by WordPress for many different functions, and it's possible this is why you're having trouble. I would suggest reaching out to your host's technical support team with the error above so they can take a look at your server logs and provide more insight.

    Does that give any further clue from your view?

    February 21, 2015 at 11:16 am in reply to: Woocommerce freezing site with Streamline at checkout #141655
    kilerb
    Member

    Thanks for your reply. Is this because I added a sidebar? I followed the instructions on how to use Genesis hooks and the functions.php file. Is that what caused this? If so, how do I add it without disturbing things. I made the header into a slider. I have added sidebars in the past without any problems. Or is that not what it is and I am totally off-base here? Thanks!!!

    January 11, 2015 at 3:10 pm in reply to: Menu Item Has Arrow Above It #137102
    kilerb
    Member

    Nope, never figured this out... Still trying to fix the problem. Thanks.

    December 1, 2014 at 2:37 pm in reply to: customize individual menu item #133363
    kilerb
    Member

    Hi, I just tried doing this using the same method. I went to the menu area in the dashboard and added the css style. Then used the code in my child theme's style.css, and the colors don't change for me either. I'm using Streamline child theme. Is there a reason it might not work?

    Thanks!

    October 12, 2014 at 12:37 pm in reply to: Made a Full Length Header and Mobile Seems Off Now #127588
    kilerb
    Member

    Takes 2 to tango, hon.... 🙂

    October 11, 2014 at 3:03 pm in reply to: Made a Full Length Header and Mobile Seems Off Now #127505
    kilerb
    Member

    Wow, it's like you own the place 🙂 You've laid the law down twice with telling me how nobody will help me on this post and to start a new one. Why don't you just not worry about the situation? Or is this a last word kind of thing? heheheh 🙂

    October 11, 2014 at 2:56 pm in reply to: Made a Full Length Header and Mobile Seems Off Now #127502
    kilerb
    Member

    I unfortunately don't retain all of the knowledge I learn from here. I do reference the help from posts that I've made in the past often though. Rather than asking the same question again. I appreciate your advice, but I have a lot of things going on in the real world that don't give me much time to come on here to help people, with the limited knowledge I have when it comes to css. It would probably be a waste of everyone's time. Of course if I happened to be on and someone asked how to center something, I'd reply. I just don't have the freetime you do unfortunately 🙁

    October 11, 2014 at 2:36 pm in reply to: Made a Full Length Header and Mobile Seems Off Now #127496
    kilerb
    Member

    Well from my 5+ years on these boards, I can definitely say people have helped me with much more detailed and specific custom requests than this one. Maybe it's just beyond what you are willing to help with 🙂
    But thanks for making it seem like nobody would help with this, in turn making them less apt to jump in now. Haha

    October 11, 2014 at 12:30 pm in reply to: Made a Full Length Header and Mobile Seems Off Now #127488
    kilerb
    Member

    Thanks emasai... I made a couple of these changes... I think I did something wrong though. On my computer's version, the social links dropped below the header. I tried putting the code below into the .site-header and title-area. Neither seemed to make a difference regarding this. As of now, the mobile version does show my entire header, but then there's a huge space between that and the social links, which are also below the header on the mobile version. Sorry, I must've missed something.

    background: url(http://onemanpodcast.com/wp-content/uploads/2014/10/header2.png);
    	
    	background-size: contain;
    
    	background-repeat: no-repeat;

    I think it's responsive now though. The entire header is a link. If that's what that means. Hahahah...

    September 5, 2014 at 7:32 pm in reply to: Posts not showing on front page #123008
    kilerb
    Member

    So, I looked further into this... There IS a widget called Genesis featured posts. And, there's widget area called "Welcome Message" BUT, I have another website I've made called nikkiglaser.com and that one is showing posts on the front page and there are no widgets being used to do so. Here's the real weird part. When I add "Genesis - Featured Posts" it doesn't add posts. When I add the widget "Recent Posts" it shows their titles. So neither of them show content at all, and I've made sure in every situation (in the widget and in genesis settings) it says show full content, not excerpts... But on nikkiglaser.com it just shows the posts on the main page without the use of any of these widgets. It's the same exact 411 theme on her site. Any other ideas why this isn't showing posts? Very strange! 🙂

    September 4, 2014 at 5:14 pm in reply to: Posts not showing on front page #122828
    kilerb
    Member

    Changed both 10's to 5 and the posts still don't show. I wonder what's up here... Never seen this happen before.

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 59 total)
1 2 3 →

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2025 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble