• 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 - 61 through 80 (of 97 total)
← 1 2 3 4 5 →
  • Author
    Posts
  • January 15, 2013 at 6:23 pm in reply to: flavicon wont work #12163
    Brian Bourn
    Member

    Looks fine to me. I see a custom favicon. Sometimes favicons are hard to flush from your browser's cache.


    Bourn Creative | bourncreative.com | Twitter

    January 11, 2013 at 1:18 pm in reply to: YouTube Embedded Code Showing #11300
    Brian Bourn
    Member

    It should be on the Genesis Theme Settings page under "Content Archives".


    Bourn Creative | bourncreative.com | Twitter

    January 11, 2013 at 12:40 pm in reply to: YouTube Embedded Code Showing #11292
    Brian Bourn
    Member

    That's most likely being caused by using excerpts on the blog page. If you change your theme settings to show the content and use the "more" tag to break your archives, that won't happen and the video will show.

    The other option would to write longer intro text/video description so the automatic character limit won't include the video link.


    Bourn Creative | bourncreative.com | Twitter

    January 11, 2013 at 12:35 pm in reply to: Just want one footer widget in Agent theme, but dont know how #11290
    Brian Bourn
    Member

    In your functions.php file change:

    /** Add support for 3-column footer widgets */
    add_theme_support( 'genesis-footer-widgets', 3 );

    to:

    /** Add support for 1-column footer widget */
    add_theme_support( 'genesis-footer-widgets', 1 );

    After that you may need to make some CSS adjustments to the width along with anything else that pops up.


    Bourn Creative | bourncreative.com | Twitter

    January 10, 2013 at 8:43 pm in reply to: Education Theme 2.0 – Navigation Bar #11117
    Brian Bourn
    Member

    If you delete the following from your functions.php file it will move the nav back to the default genesis_after_header hook and allow for full width. After you make this change, you may need to adjust your CSS.

    /** Reposition Primary Navigation */
    remove_action( 'genesis_after_header', 'genesis_do_nav' );
    add_action( 'genesis_before_content_sidebar_wrap', 'genesis_do_nav' );
    
    /** Reposition Secondary Navigation */
    remove_action( 'genesis_after_header', 'genesis_do_subnav' );
    add_action( 'genesis_before_content_sidebar_wrap', 'genesis_do_subnav' );

    Bourn Creative | bourncreative.com | Twitter

    January 10, 2013 at 7:22 pm in reply to: How to append the "Leave a Comment" byline link? #11091
    Brian Bourn
    Member

    You will need to run a filter in your functions.php file. Be sure you are not using the Genesis Simple Edits plugin.

    Try this:

    //***Customize the Post Info**/
    add_filter( 'genesis_post_info', 'bourncreative_post_info_filter' );
    function bourncreative_post_info_filter( $post_info ) {
    
        return '[post_date] | By [post_author_posts_link] | <a href="' . get_permalink() . '#disqus_thread">View Comments</a>';
    }

    Bourn Creative | bourncreative.com | Twitter

    January 10, 2013 at 6:54 pm in reply to: author box plugin #11080
    Brian Bourn
    Member

    With Genesis' author box, you can add HTML links. If you aren't sure how write HTML links you can create the text and link in the Visual Editor on a test page, switch to "text" view, then copy paste the HTML over to the author bio box.


    Bourn Creative | bourncreative.com | Twitter

    January 10, 2013 at 3:48 pm in reply to: Comment Box Placement #11048
    Brian Bourn
    Member

    This in your functions.php file should do it.

    //***Move The Comment Form**/
    remove_action( 'genesis_comment_form', 'genesis_do_comment_form' );
    add_action( 'genesis_before_comments' , 'genesis_do_comment_form' );

    Bourn Creative | bourncreative.com | Twitter

    January 10, 2013 at 3:44 pm in reply to: Widen agency landing page #11047
    Brian Bourn
    Member

    Find this in your CSS and adjust the width

    .agency-landing #inner {
    	margin: 20px auto;
    	width: 800px;
    }

    Bourn Creative | bourncreative.com | Twitter

    January 10, 2013 at 2:28 pm in reply to: Remove Footer and Author? #11033
    Brian Bourn
    Member

    The easiest way to edit these areas is to use the Genesis Simple Edits plugin.


    Bourn Creative | bourncreative.com | Twitter

    January 9, 2013 at 6:28 pm in reply to: Generate box #10839
    Brian Bourn
    Member

    If remove the following from your home.php file and add it to your functions.php it will show up everywhere like you want.

    /** Add Generate Box after header **/
    add_action( 'genesis_after_header', 'generate_box', 10 );
    function generate_box() {
    
    	if ( is_active_sidebar( 'generate-box' ) ) {
    		echo '<div id="generate-box"><div class="wrap">';
    		dynamic_sidebar( 'generate-box' );
    		echo '</div><!-- end .wrap --></div><!-- end #generate-box -->';
    	}
    
    }

    Bourn Creative | bourncreative.com | Twitter

    January 9, 2013 at 6:00 pm in reply to: Right Footer Widget help #10833
    Brian Bourn
    Member
     #footer-widgets label {
    color: #888;
    } 

    should change it to the same color as the other footer widget text.


    Bourn Creative | bourncreative.com | Twitter

    January 8, 2013 at 10:25 am in reply to: Open Menu Tab in new window #10377
    Brian Bourn
    Member

    This option is built into WordPress. On the menu screen click on "screen options" in the upper right corner, then check the box that says "Link Target".

    That will enable a checkbox on your menu items to open any one of them in a new window/tab.


    Bourn Creative | bourncreative.com | Twitter

    January 7, 2013 at 9:24 pm in reply to: Adding code to the head of specific pages. #10261
    Brian Bourn
    Member

    You could add something like this to your functions file using the conditionals from the Codex.

    https://gist.github.com/4480934.git


    Bourn Creative | bourncreative.com | Twitter

    January 7, 2013 at 4:02 pm in reply to: Trying to remove footer from one or two pages only #10197
    Brian Bourn
    Member

    Bill-We add a custom body class on every custom template as things may shift around a little bit when removing elements and the template may need some targeted CSS tweaks. WordPress will usually add it's own class that you can use but it is usually much longer than a custom class.


    Bourn Creative | bourncreative.com | Twitter

    January 6, 2013 at 11:30 am in reply to: adding additional navigation menu to page template #9947
    Brian Bourn
    Member

    We've built several membership sites in the past and usually use the Genesis Simple Menus plugin to create alternate secondary menus and assign them to the membership only pages.

    Another option would be to use Genesis Simple Sidebars and create a membership section only sidebar and place a custom menu in a widget in that unique sidebar.

     


    Bourn Creative | bourncreative.com | Twitter

    January 4, 2013 at 8:06 pm in reply to: Trying to remove footer from one or two pages only #9659
    Brian Bourn
    Member

    This file should go in your child theme folder "executive". If you click the github link you can download the complete php file to add to your child theme. You shouldn't ever edit or add anything to the "genesis" theme folder.


    Bourn Creative | bourncreative.com | Twitter

    January 4, 2013 at 3:47 pm in reply to: Trying to remove footer from one or two pages only #9585
    Brian Bourn
    Member

    If you are trying to remove the footer widgets (not the footer) on only a few pages, another option would be to create a new page template and upload it to your theme folder to make it selectable from the page editor without having to track down the page IDs or edit your functions file every time.

     


    Bourn Creative | bourncreative.com | Twitter

    January 4, 2013 at 12:10 pm in reply to: How to add social media icons in menu area? #9536
    Brian Bourn
    Member

    You can get started using this post:

    http://www.billerickson.net/customizing-wordpress-menus/


    Bourn Creative | bourncreative.com | Twitter

    January 4, 2013 at 12:10 pm in reply to: How to add social media icons in menu area? #9534
    Brian Bourn
    Member

    You can get started with this: http://www.billerickson.net/customizing-wordpress-menus/


    Bourn Creative | bourncreative.com | Twitter

  • Author
    Posts
Viewing 20 posts - 61 through 80 (of 97 total)
← 1 2 3 4 5 →
« Previous Page

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