• 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

jonahgirl

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 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • April 20, 2015 at 12:02 pm in reply to: Community Pro Theme Menu Options #148567
    jonahgirl
    Member

    I went over to the theme website and asked that question via the support link. This is the reply I received about having a regular horizontal menu for desktop view:

    As of right now, there is no support for a horizontal nav. It would be a fairly complex procedure to remove the side-menu support and to restyle the primary navigation, but it's possible if you know you're way around jQuery and CSS.

    Hope this helps.

    Melanie

    August 6, 2014 at 8:45 am in reply to: Full width FB share image #117350
    jonahgirl
    Member

    Thanks Michael,
    Even the FB debug was showing the thumbnail. Weird.
    Melanie

    October 16, 2013 at 2:17 pm in reply to: Grid Loop Has Me Stumped #67068
    jonahgirl
    Member

    Number of posts was not my issue. The Read More link stopped working...yes I did get a fix.
    Nick gave me the answer to add this to my home.php file

    global $more;
      $more = 0;

    So it looks like this

    <?php
    
    add_action( 'genesis_meta', 'education_home_genesis_meta' );
    /**
     * Add widget support for homepage. If no widgets active, display the default loop.
     *
     */
    function education_home_genesis_meta() {
    	
    	global $paged;
    	
    	if( $paged < 1 ) {
    		if ( is_active_sidebar( 'slider' ) || is_active_sidebar( 'intro' ) || is_active_sidebar( 'featured' ) || is_active_sidebar( 'call-to-action' ) ) {
    		
    			add_action( 'genesis_before_content', 'education_home_loop_helper', 1 );
    	
    		}
    	}
    	
    }
    
    function education_home_loop_helper() {
    		
    		echo '<div id="home-featured">';
    		
    		genesis_widget_area( 'slider', array( 
    		
    			'before'	=>	'<div class="slider widget-area">' 
    		
    		) );
    
    		genesis_widget_area( 'intro', array( 
    		
    			'before'	=> 	'<div class="intro widget-area"><div class="inner">', 
    			'after'	=>	'<div class="clear"></div></div></div><!-- end .intro -->' 
    		
    		) );
    		
    		genesis_widget_area( 'featured', array(
    		 
    			'before'	=>	'<div class="featured widget-area"><div class="inner">', 
    			'after'	=>	'<div class="clear"></div></div></div><!-- end .featured -->' 
    			
    		) );
    		
    		genesis_widget_area( 'call-to-action', array(
    		
    			'before'	=>	'<div class="call-to-action"><div class="banner-left"></div>', 
    			'after'	=>	'<div class="banner-right"></div></div><!-- end .call-to-action -->'
    		
    		) );	
    		
    	
    
    		echo '</div>';
    
    		global $more;
    		$more = 0;
    		
    }
    add_action( 'pre_get_posts', 'be_include_category_from_blog' );
    /**
     * Include Category from Blog
     * 
     * @author Bill Erickson
     * @link http://www.billerickson.net/customize-the-wordpress-query/
     * @param object $query data
     *
     */
    function be_include_category_from_blog( $query ) {
    	
    	if( $query->is_main_query() && $query->is_home() ) {
    		$query->set( 'cat', '4' );
    	}
     
    }
    
    genesis();

    The grid loop fix is needed in the functions.php file would control the number of posts on the home page
    By setting the total number of posts per page that should fix the grid number run amok..set this to 5

    /**
    * Possibly amend the loop.
    *
    * Specify the conditions under which the grid loop should be used.
    *
    * @author Bill Erickson
    * @author Gary Jones
    * @author Travis Smith
    * @link http://code.garyjones.co.uk/genesis-grid-loop-advanced/
    * @link http://wpsmith.net/2013/genesis/genesis-grid-loop-in-genesis-1-9/
    *
    * @return boolean Return true of doing the grid loop, false if not.
    */
    function wps_is_doing_grid_loop() {
    // Amend this conditional to pick where this grid looping occurs.
    // This says to use the grid loop everywhere except single posts,
    // single pages and single attachments.
    return ( ! is_singular() );
    }
    add_action( 'pre_get_posts', 'wps_include_cat_in_grid' );
    /**
    * Limit Query to one Category
    *
    * @author Bill Erickson
    * @author Travis Smith
    * @link http://www.billerickson.net/customize-the-wordpress-query/
    * @link http://wpsmith.net/2013/genesis/genesis-grid-loop-in-genesis-1-9/
    * @param object $query WP Query data
    *
    */
    function wps_include_cat_in_grid( $query ) {
    if( $query->is_main_query() && $query->is_home() && wps_is_doing_grid_loop() ) {
    $query->set( 'cat', '4' );
    $query->set( 'posts_per_page', '2' );
    }
    }

    Hope you get it worked out.
    mel

    September 21, 2013 at 9:29 am in reply to: Grid Loop Has Me Stumped #63664
    jonahgirl
    Member

    The back up was set up as test in another folder. The live site is still "broken"

    December 21, 2012 at 10:15 am in reply to: Slideshow below header – Balance theme #6655
    jonahgirl
    Member

    Since you want it on all your pages the easiest method would be to use Genesis Simple Hooks. If I knew what slider you were planning on using I could write the code for the hook for you. Just turn off the breadcrumbs...

    Melanie

    December 15, 2012 at 4:16 pm in reply to: Wanted: Expert to "Pair Program" with me whilst sharing my screen #5458
    jonahgirl
    Member

    John,

    I sent you an email. I can also provide references.

    Melanie

    December 14, 2012 at 4:30 pm in reply to: Gravity Forms Design Issue #5288
    jonahgirl
    Member

    When code doesn't work but the same code works in Firebug...usually means the code isn't right. I noticed that the code you put in the post is missing a ";" at the end of the background line.

    Sometimes it is something simple...

  • Author
    Posts
Viewing 7 posts - 1 through 7 (of 7 total)

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