• 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

Brian Bourn

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 97 total)
1 2 3 4 5 →
  • Author
    Posts
  • August 28, 2014 at 7:14 pm in reply to: Is there a way to paginate long Pages rather than Posts? #121603
    Brian Bourn
    Member

    The arguments don't appear to be filterable with Genesis, so you'll need to dig into http://codex.wordpress.org/Function_Reference/wp_link_pages & write some custom code.


    Bourn Creative | bourncreative.com | Twitter

    August 28, 2014 at 2:45 pm in reply to: Is there a way to paginate long Pages rather than Posts? #121559
    Brian Bourn
    Member

    Yes, this can be done in any WordPress site using the "next page" tag (similar to the read more tag). This post should guide you through it: http://www.bourncreative.com/how-to-use-the-wordpress-next-page-tag-to-manage-long-content/


    Bourn Creative | bourncreative.com | Twitter

    September 23, 2013 at 7:46 pm in reply to: Color styling the column class backgrounds #63914
    Brian Bourn
    Member

    The easiest way would be to just add additional CSS classes to column classes HTML

    EX:

    <div class="one-third first color-one">CONTENT</div>
    
    <div class="one-third color-two">CONTENT</div>
    
    <div class="one-third color-three">CONTENT</div>
    
    //CSS
    
    .color-one {
     background-color: #000
    }
    
    .color-two {
     background-color: #555
    }
    
    .color-three {
     background-color: #ddd
    }

    Bourn Creative | bourncreative.com | Twitter

    April 18, 2013 at 8:00 pm in reply to: Executive theme – new page template #36267
    Brian Bourn
    Member

    There is no need for a new template. Just scroll down the page editor to the layout options metabox and select the full width option.


    Bourn Creative | bourncreative.com | Twitter

    April 18, 2013 at 7:58 pm in reply to: Change Comment Link #36266
    Brian Bourn
    Member

    Take a look at this thread.
    http://www.studiopress.community/topic/how-to-append-the-leave-a-comment-byline-link/


    Bourn Creative | bourncreative.com | Twitter

    April 18, 2013 at 7:54 pm in reply to: Remove header image from Minimum home page only #36265
    Brian Bourn
    Member

    Try the following in your home.php

    remove_action( 'genesis_header', 'genesis_header_markup_open', 5 );
    remove_action( 'genesis_header', 'genesis_do_header' );
    remove_action( 'genesis_header', 'genesis_header_markup_close', 15 );

    Bourn Creative | bourncreative.com | Twitter

    April 18, 2013 at 7:24 pm in reply to: Inserting JS code into HEAD on Genesis? #36260
    Brian Bourn
    Member

    You can add scripts or other code to header or footer on the theme settings page.


    Bourn Creative | bourncreative.com | Twitter

    April 18, 2013 at 7:23 pm in reply to: 404 error on Portfolio pages in Minimum #36258
    Brian Bourn
    Member

    Try re-saving your Permalink option in your WordPress settings. If I remember correctly, that theme uses a custom post type for the portfolio and sometimes the activation of CPTs will cause 404 errors. Saving your Permalink settings usually fixes it.


    Bourn Creative | bourncreative.com | Twitter

    April 12, 2013 at 4:18 pm in reply to: Pages in my backend – how to get them to show chronilogical? #35096
    Brian Bourn
    Member

    You can use the "menu order" part of the page attributes box in the page editor to order the pages in your dashboard or try this plugin (We install it on nearly every site we build):

    http://wordpress.org/extend/plugins/simple-page-ordering/


    Bourn Creative | bourncreative.com | Twitter

    April 4, 2013 at 10:57 am in reply to: Can't get site title area to move above left header widget area #33110
    Brian Bourn
    Member

    Try adding this to your functions file and see if it outputs where you want:

    add_action('genesis_header_right', 'header_left_widget_area');
    function header_left_widget_area() {
    echo '<div class="left-widget-area">';
    dynamic_sidebar('Header Left');
    echo '</div><!-- end .left-widget-area -->';
    }

    This will put your new widget inside the #header .widget-area, but it may work depending on the design.


    Bourn Creative | bourncreative.com | Twitter

    April 4, 2013 at 10:34 am in reply to: Can't get site title area to move above left header widget area #33104
    Brian Bourn
    Member

    Depending on the final design you could rewrite the header like below, or us the Genesis header right hook.

    add_action( 'genesis_header_right' );
    remove_action( 'genesis_header', 'genesis_do_header' );
    add_action( 'genesis_header', 'child_custom_do_header' );
    /**
     * Echo the default header, including the #title-area div,
     * along with #title and #description, custom widget area, as well as the .widget-area.
     *
     * Calls the genesis_site_title, genesis_site_description and
     * genesis_header_right actions.
     *
     * @since 1.0.2
     */
    function child_custom_do_header() {
    
    	echo '<div id="title-area">';
    	do_action( 'genesis_site_title' );
    	do_action( 'genesis_site_description' );
    	echo '</div><!-- end #title-area -->';
    	
    	if ( is_active_sidebar( 'Header Left') ) {
    	echo '<div class="left-widget-area">';
    	dynamic_sidebar('Header Left');
    	echo '</div><!-- end .left-widget-area -->';
    	}
    	
    	if ( is_active_sidebar( 'header-right' ) || has_action( 'genesis_header_right' ) ) {
    		echo '<div class="widget-area">';
    		do_action( 'genesis_header_right' );
    		add_filter( 'wp_nav_menu_args', 'genesis_header_menu_args' );
    		dynamic_sidebar( 'header-right' );
    		remove_filter( 'wp_nav_menu_args', 'genesis_header_menu_args' );
    		echo '</div><!-- end .widget-area -->';
    	}
    
    }

    Bourn Creative | bourncreative.com | Twitter

    April 2, 2013 at 8:57 pm in reply to: Extra sidebar area pushes content down #32774
    Brian Bourn
    Member

    You'll also still need to register the widget like you already have.


    Bourn Creative | bourncreative.com | Twitter

    April 2, 2013 at 8:55 pm in reply to: Extra sidebar area pushes content down #32772
    Brian Bourn
    Member

    This is one way you can do it in your functions file:

    add_action( 'genesis_before_sidebar_widget_area', 'child_before_sidebar' );
    function child_before_sidebar() {
    echo '<div class="before-sidebar-ads">';
    dynamic_sidebar( 'before-sidebar-ads' );
    echo '</div>';
    }

    Bourn Creative | bourncreative.com | Twitter

    April 1, 2013 at 3:23 pm in reply to: Extra sidebar area pushes content down #32524
    Brian Bourn
    Member

    Looks to me like you may have used the wrong hook to add the sidebar. To add a widget area above primary sidebar I use the following hook:

    add_action( 'genesis_before_sidebar_widget_area', 'your_function_name' );

    Bourn Creative | bourncreative.com | Twitter

    March 31, 2013 at 8:37 pm in reply to: Showing the description of a Tag in the Tag archive #32379
    Brian Bourn
    Member

    Put your text in the fields below the description:

    Tag Archive Settings
    Archive Headline

    Leave empty if you do not want to display a headline.

    Archive Intro Text

    Leave empty if you do not want to display any intro text.


    Bourn Creative | bourncreative.com | Twitter

    March 31, 2013 at 6:57 am in reply to: Showing the description of a Tag in the Tag archive #32242
    Brian Bourn
    Member

    While logged in, click on the link Edit Tag in the WP Admin Bar and enter your archive description and/or archive headline on that page. You can also get there by clicking on Tags under the Posts main menu in the dashboard, then edit on the tag you want to add a description or headline to.


    Bourn Creative | bourncreative.com | Twitter

    March 24, 2013 at 12:20 pm in reply to: problem with comment link #30930
    Brian Bourn
    Member

    You need to add back the the other shortcodes. Try this:

    /** Modify the comment link text */
    add_filter( ‘genesis_post_info’, ‘post_info_filter’ );
    function post_info_filter( $post_info ) {
        return ‘ [post_date] [post_author] [post_comments zero="Leave a Comment" one="1 Comment" more="% Comments"]‘;
    }

    http://my.studiopress.com/snippets/post-info/


    Bourn Creative | bourncreative.com | Twitter

    March 24, 2013 at 12:15 pm in reply to: How to remove date only from sticky post? #30928
    Brian Bourn
    Member

    Yes. You should be good. Glad it worked the way you wanted.


    Bourn Creative | bourncreative.com | Twitter

    March 23, 2013 at 8:42 pm in reply to: How to remove date only from sticky post? #30819
    Brian Bourn
    Member

    Try this in your CSS file:

    .sticky .date {
    display: none;
    }

    To hide the entire byline you can try:

    .sticky .post-info {
    display: none;
    }

    Bourn Creative | bourncreative.com | Twitter

    March 21, 2013 at 7:59 pm in reply to: Put blogs of a certain category in one page #30355
    Brian Bourn
    Member

    Take a look at this:
    http://www.briangardner.com/blog-page-single-category/


    Bourn Creative | bourncreative.com | Twitter

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

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 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