• 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

SoZo

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 1,612 total)
1 2 3 … 79 80 81 →
  • Author
    Posts
  • March 10, 2013 at 10:32 am in reply to: How do I make the Metro theme a fixed width template? #25314
    SoZo
    Member

    You're welcome


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 19, 2013 at 12:45 pm in reply to: In PYT Theme, How Do I Show Author for Each Post? #21391
    SoZo
    Member

    You can enable the author box in your Profile settings and enter a bio there as well. The image will pull the gravatar associated with the author's email.


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 18, 2013 at 2:12 pm in reply to: News Theme Social Icons #21083
    SoZo
    Member

    Have you deactivated all plugins to rule out conflicts?


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 6, 2013 at 5:07 pm in reply to: Shifting Primary Navigation Bar to right #18539
    SoZo
    Member

    If you want the grey background to span the header you'd need to add it using #nav


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 6, 2013 at 8:08 am in reply to: Tag line not showing in Executive #18428
    SoZo
    Member

    You're welcome 🙂


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 6, 2013 at 8:06 am in reply to: Shifting Primary Navigation Bar to right #18427
    SoZo
    Member

    Change it to this

    ul.menu-primary {
    width: auto;
    float: right;
    }


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 5, 2013 at 4:14 pm in reply to: Metric basic blog homepage #18334
    SoZo
    Member

    You're welcome 🙂


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 5, 2013 at 1:23 pm in reply to: Getting shortcode and/or a plugin to work in Menu Bar #18279
    SoZo
    Member

    The metro theme adds a sidebar to the subnav with this

    // Adds widget area before the .menu on #subnav
    add_filter( 'genesis_do_subnav', 'child_do_subnav_widget', 10, 2 );
    function child_do_subnav_widget( $subnav_output, $subnav ){
    	ob_start();
    	genesis_widget_area( 'subnav-left', array(
    		'before' => '<div class="subnav-left widget-area">',
    	) );
    	$widget_area = ob_get_clean();
    
    	return str_replace( $subnav, $widget_area . $subnav, $subnav_output );
    }

    You should be able to figure it out from there but if you want me to do it you can email me john[at]sozosdesign.com.


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 5, 2013 at 1:03 pm in reply to: Showing posts as grid in category view #18272
    SoZo
    Member

    You could add in the advanced grid loop.


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 5, 2013 at 1:01 pm in reply to: Agency Theme Add Home Section #18271
    SoZo
    Member

    You should be able to use a different hook like genesis_before_footer


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 5, 2013 at 12:58 pm in reply to: Best practice on child theme names #18268
    SoZo
    Member

    Child theme updates are not automatic. You need to update them manually.


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 5, 2013 at 12:57 pm in reply to: child pages in agency or any theme #18267
    SoZo
    Member

    If you want a menu item that won't link anywhere for your parent item you add a custom link and enter a # into the URL field. You create child items by dragging them to the right so that they are indented beneath the parent item.


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 5, 2013 at 12:55 pm in reply to: Portfolio in sidebar not displaying #18264
    SoZo
    Member

    That is for the older version of the portfolio template. The newer one use a portfolio custom post type as explained in the theme's setup instructions


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 5, 2013 at 12:52 pm in reply to: Outreach Home slider display – posts vs. page #18263
    SoZo
    Member

    You can put featured post widgets into any of the other home sidebars


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 5, 2013 at 12:50 pm in reply to: Metric basic blog homepage #18262
    SoZo
    Member

    Delete home.php and set your Reading settings back to their defaults. Then delete all the .home body class selectors/rules form your style sheet, e.g. .home #inner


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 5, 2013 at 12:48 pm in reply to: Education – Remove Sidebar on Home #18260
    SoZo
    Member

    Add this to your style sheet

    .home #content,
    .home #sidbar {
    display: none;
    }


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 5, 2013 at 12:46 pm in reply to: Slider in Metro theme or regular widget area #18258
    SoZo
    Member

    No, you don't need anything special since it's just a widget. You can place it into any sidebar.


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 5, 2013 at 12:45 pm in reply to: Agency Theme Add Home Section #18257
    SoZo
    Member

    The original home loop is added with this add_action

    		add_action( 'genesis_loop', 'agency_home_loop_helper' );

    So you either need to add another one for your new function or move your divs in to the agency_home_loop_helper function.

    E.g.

    add_action( 'genesis_after_loop', 'agency_home_center_loop_helper' );

    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 5, 2013 at 11:44 am in reply to: Multipage pagination buttons not visible #18245
    SoZo
    Member

    Looks like you found the style rule


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

    February 4, 2013 at 6:49 pm in reply to: Font for Bullet Points #18113
    SoZo
    Member

    I'm getting gothic in Safari as well. Have you cleared your cache?


    John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 1,612 total)
1 2 3 … 79 80 81 →

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