• 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

Jen Baumann

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 - 81 through 100 (of 288 total)
← 1 2 3 4 5 6 … 13 14 15 →
  • Author
    Posts
  • January 15, 2013 at 3:48 pm in reply to: Home.php Not Working #12124
    Jen Baumann
    Participant

    See this: http://www.studiopress.community/topic/change-home-page-grid-layout-quattro-theme/#post-12114

    Note the code didn't post well so there's a note below the code block. Change the 2 to whatever number you need.

    January 15, 2013 at 3:42 pm in reply to: Genesis 1.9.1 and Genesis Responsive Slider Problem #12120
    Jen Baumann
    Participant

    Looks like you have a static page set as the homepage. This overrides the theme home.php so the widgets won't display. Under Settings > Reading, set it to display Your latest posts.

    January 15, 2013 at 3:35 pm in reply to: Genesis 1.9 Update and Outreach – Problems! #12117
    Jen Baumann
    Participant

    If you rename your folder without the uppercase letter, your site should work fine again.

    January 15, 2013 at 3:24 pm in reply to: Change home page grid layout.. Quattro Theme #12114
    Jen Baumann
    Participant

    Please add this to your functions.php file

    add_action( 'pre_get_posts', 'child_change_home_query' );
    function child_change_home_query( $query ) {
    	if( $query->is_main_query() && $query->is_home() ) {
    		$query->set( 'posts_per_page', '2' ); 
    	}
    }

    That should be && $query. The code isn't posting right.

    January 13, 2013 at 5:41 pm in reply to: Customizing Sidebar Heading #11689
    Jen Baumann
    Participant

    Rough but:
    If you want an Icon, add it to the background and change the left padding.

    .sidebar h4, .sidebar h4 a, .sidebar h4 a:hover, .sidebar h4 a:visited {
      background: #AB0606;
      color: #FFFFFF;
      font-size: 19px;
      padding: 16px;
      text-decoration: none;
      text-transform: uppercase;
    }
    January 13, 2013 at 3:29 pm in reply to: Genesis basic theme responsive? #11654
    Jen Baumann
    Participant

    You're welcome. Yep, it's basically just that viewport metatag.

    January 13, 2013 at 10:29 am in reply to: Genesis basic theme responsive? #11593
    Jen Baumann
    Participant

    The base Genesis Theme with no child theme uses the css for mobile responsive but does not add the meta viewport tag to avoid interference with child themes. The recommended method of using Genesis as a base is to download the sample child theme, which does include that viewport tag. This also allows you to customize it without it being overwritten on upgrade 🙂

    January 13, 2013 at 10:21 am in reply to: Blocked divs in Balance theme #11591
    Jen Baumann
    Participant

    Excellent! You're very welcome!

    I'm glad I could help!

    January 12, 2013 at 4:28 pm in reply to: Blocked divs in Balance theme #11504
    Jen Baumann
    Participant

    Ah, you know, I came back and re-read the problem. You're actual issue is position:relative; on the .entry-content css.

    January 12, 2013 at 4:26 pm in reply to: Create widgets specific for archives and pages #11503
    Jen Baumann
    Participant

    You're welcome 🙂

    January 12, 2013 at 7:13 am in reply to: Create widgets specific for archives and pages #11427
    Jen Baumann
    Participant

    Try

    if ( is_active_sidebar('after-page') && ( is_page() || is_archive() ) )
    January 12, 2013 at 6:47 am in reply to: Insert Logo in Agency Header #11426
    Jen Baumann
    Participant

    Eddie is correct, you can upload under Appearance > Header and you can put it on a transparent or filled background of 960x115.

    Anthony, as far as embeds, those are handled by WordPress, not Genesis.

    If you want to disable the custom header function, remove this line from functions.php:

    /** Add support for custom header */
    add_theme_support( 'genesis-custom-header', array( 'width' => 960, 'height' => 115 ) );

    This will restore an option under Genesis > Theme Settings for Dynamic Text or Image Logo. But, you have to add some css to make that happen. So in your style.css file, you'll need to add (at minimum) the following:

    .header-image #title-area {
      background: url(images/logo.png) no-repeat center top;
      background-size: contain;
    }

    Then around line 1654, change the css to include .header-image #title-area here:

    body, .archive-page, .content-sidebar #content, .content-sidebar-sidebar #content, .footer-widgets-1, .footer-widgets-2, .footer-widgets-3, .full-width-content #content, .header-image #title-area, .home-left, .home-middle, .home-right, .sidebar, .sidebar-content #content, .sidebar-content-sidebar #content, .sidebar-sidebar-content #content, #content-sidebar-wrap, #footer .creds, #footer .gototop, #footer-widgets .wrap, #header .widget-area, #sidebar-alt, #title-area, #wrap {
      width: 100%;
    }
    January 11, 2013 at 2:30 pm in reply to: Adding Slideshow To Lifestyle Home Page php #11315
    Jen Baumann
    Participant

    You're very welcome!

    January 11, 2013 at 1:46 pm in reply to: Adding Slideshow To Lifestyle Home Page php #11308
    Jen Baumann
    Participant

    Make sure you clear your total cache. I do see a change. If you want to make it more drastic, increase 10px to something higher. 20px maybe?

    January 11, 2013 at 1:19 pm in reply to: Adding Slideshow To Lifestyle Home Page php #11301
    Jen Baumann
    Participant

    I would just add it at the bottom to make life easy 🙂

    January 11, 2013 at 12:18 pm in reply to: Adding Slideshow To Lifestyle Home Page php #11284
    Jen Baumann
    Participant

    You can add this to style.css

    .slideshow_container {
      margin-bottom: 10px;
    }
    January 10, 2013 at 12:07 pm in reply to: Adding Slideshow To Lifestyle Home Page php #11006
    Jen Baumann
    Participant

    Just replace the do_shortcode with your do_action code. It doesn't appear from that you need to echo it.

    do_action('slideshow_deploy', '246');
    January 10, 2013 at 7:29 am in reply to: Removing Footer #10932
    Jen Baumann
    Participant

    I'm glad you resolved it!

    January 8, 2013 at 5:41 pm in reply to: Adding Slideshow To Lifestyle Home Page php #10498
    Jen Baumann
    Participant

    Try this. Looks like you had an extra '

    echo do_shortcode( '[slideshow_deploy id=246]' );
    January 8, 2013 at 2:51 pm in reply to: Adding Slideshow To Lifestyle Home Page php #10444
    Jen Baumann
    Participant

    If you edit your home.php file, which is located in the lifestyle child theme folder, the slideshow will display on the homepage only.

    Since you have a shortcode and you haven't provided the code you need to add, I'd recommend trying this (Codex):

    echo do_shortcode( '[whatever_shortcode]' );

    You'll see the function in the home.php file similar to this:

    function lifestyle_home_loop_helper() {
    	if ( is_active_sidebar( 'home' ) || is_active_sidebar( 'home-left' ) || is_active_sidebar( 'home-right' ) ) {
    		dynamic_sidebar( 'home' );
    		if ( is_active_sidebar( 'home-left' ) ) {
    			echo '<div id="homepage-left">';
    			dynamic_sidebar( 'home-left' );
    			echo '</div><!-- end #homepage-left -->';
    		}
    		if ( is_active_sidebar( 'home-right' ) ) {
    			echo '<div id="homepage-right">';
    			dynamic_sidebar( 'home-right' );
    			echo '</div><!-- end #homepage-right -->';
    		}		
    	}
    	else {
                    echo do_shortcode( '[whatever_shortcode]' );
    		genesis_standard_loop();
    	}	
    }

    If you have questions in the future, it's always easier for the community to help if you provide a url.

  • Author
    Posts
Viewing 20 posts - 81 through 100 (of 288 total)
← 1 2 3 4 5 6 … 13 14 15 →
« Previous Page

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