• 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

Stewart

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 130 total)
1 2 3 … 5 6 7 →
  • Author
    Posts
  • August 16, 2013 at 4:25 am in reply to: Parenthesis read more #56772
    Stewart
    Member

    Sure,

    As far I my understanding goes the 'the_content_more_link' is a WordPress filter which is applied in 'wp-includes/post-template.php'.

    And the 'get_the_content_more_link' is the name of the filter that genesis has used to filter the 'the_content_more_link' in 'genesis/lib/functions/formatting.php'

    Hopefully that explains it a bit better 🙂
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    August 16, 2013 at 4:02 am in reply to: Parenthesis read more #56764
    Stewart
    Member

    Hi,

    Try changing this line in your code :

    add_filter( 'the_content_more_link', 'sp_read_more_link' );
    

    To

    add_filter( 'get_the_content_more_link', 'sp_read_more_link' );
    

    hopefully that will resolve your issue.

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    August 8, 2013 at 2:22 pm in reply to: Hi all and a question #55069
    Stewart
    Member

    Hi Mark, and welcome.

    Heres a couple of sliders I use regularly:

    Soliloquy
    Genesis Responsive Slider

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    August 8, 2013 at 2:17 pm in reply to: Problem going from Version: 2.0.0-RC2 to Version 2.0 #55066
    Stewart
    Member

    Your welcome,

    Glad it worked 🙂

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    August 8, 2013 at 2:04 pm in reply to: Problem going from Version: 2.0.0-RC2 to Version 2.0 #55062
    Stewart
    Member

    Hi,

    There were a few changes between RC and 2.0, first thing I would check is the html5 theme support was changed from:

    add_theme_support( 'genesis-html5' );
    

    to

    add_theme_support( 'html5' );
    

    Hopefully that works for you.
    Here are a few resources you can checkup on the changes:

    Bill Erickson - http://www.diffchecker.com/k1j3cwz7
    Gary Jones - http://gamajo.com/changes/

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    August 8, 2013 at 1:24 pm in reply to: Remove footer entirely and reposition #55041
    Stewart
    Member

    Glad I could help 🙂


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    August 8, 2013 at 1:21 pm in reply to: Remove footer entirely and reposition #55039
    Stewart
    Member

    Yes no problem,
    The numbers at the end are priorities the lower the number the higher the priority, now that the basic version.

    If you want to read up more on this GaryJ has wrote a great explanation of these and why it was changed slightly for Genesis 2.0

    http://www.studiopress.community/topic/why-you-shouldnt-feat-updating-to-genesis-2-0-from-1-9-but-should-from-2-0rc2/#post-54831

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    August 8, 2013 at 12:50 pm in reply to: Remove footer entirely and reposition #55029
    Stewart
    Member

    Hi,

    Try this should remove those for you:

    remove_action( 'genesis_footer', 'genesis_footer_markup_open', 5 );
    remove_action( 'genesis_footer', 'genesis_footer_markup_close', 15 );
    

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    August 8, 2013 at 8:06 am in reply to: Sixteen-Nine Theme – Background Image #54887
    Stewart
    Member

    Hi,

    Im sure it was mentioned by Brian Gardner somewhere, cant find it now but the optimum background image dimensions are 1600x1050.

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    August 7, 2013 at 11:38 am in reply to: Moving the right header widget by a few px and translating search button #54624
    Stewart
    Member

    Glad it worked for you, To change the search box size just open your style.css file again on line 1456 onwards is all the styling for the search form.

    If you want to change the width of the text input box for example:

    #header .s {
             margin: 5px 0 0;
             width: 250px;
    }
    

    Just change the width 🙂 But basically there are 4 css styles there that you can play around with to achieve your desired look.

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    August 7, 2013 at 11:29 am in reply to: Moving the right header widget by a few px and translating search button #54616
    Stewart
    Member

    Hi, did you add the "<?php" ? if so remove it.

    If still having an issue let me know what version genesis you are running and when i get home Ill take a look at the enterprise theme files and see if I can find out what's wrong.

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    August 7, 2013 at 10:51 am in reply to: Moving the right header widget by a few px and translating search button #54593
    Stewart
    Member

    Hi,

    Ok for your first question, you need to open your child themes style.css file and look on around line 1459 for the following:

    #header .searchform {
    	float: right;
    	padding: 50px 0 0;
    }
    

    and just change padding on the right example: padding 50px 20px 0;

    And for your second question paste the following into your child themes functions.php file.

    <?php
    //* Do NOT include the opening php tag
     
    //* Customize search form input button text
    add_filter( 'genesis_search_button_text', 'custom_search_button_text' );
    function custom_search_button_text( $text ) {
    	return esc_attr( 'Go' );
    }
    

    And jsut change the text form Go to whatever you like.

    Don't forget to backup all files just in case something goes wrong.

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    August 3, 2013 at 10:08 am in reply to: Executive 2.0 – # of comments not showing #53949
    Stewart
    Member

    Yeah If your referring to the > image before each one I see the same in the footer, try adding this to your style.css file:

    .simple-social-icons ul li {
          list-style-image: none !important;
    }
    

    hopefully that will solve that issue.

    But in regards to the comments hopefully a few more people chime in and have a look, hard to diagnose what going on for you without seeing the problem 🙁

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    August 3, 2013 at 9:57 am in reply to: Executive 2.0 – # of comments not showing #53947
    Stewart
    Member

    Ok yeah I'm not sure then to be honest, I'm seeing it using chrome, IE and Firefox.

    Maybe a caching problem?


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    August 3, 2013 at 9:33 am in reply to: Generate Theme: Remove Post Info Section #53945
    Stewart
    Member

    Hi,

    Im sure it has to do with the Generate theme repositions the post info, so the hook you are using will not work.

    The good part is you only have to remove 1 line that is already in the functions.php on around line 42.

    Look for:

    /** Reposition the post info function */
    remove_action( 'genesis_before_post_content', 'genesis_post_info' );
    add_action( 'genesis_before_post_title', 'genesis_post_info' );
    

    And remove the the

    add_action( 'genesis_before_post_title', 'genesis_post_info' );
    

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    August 3, 2013 at 9:23 am in reply to: user-profile-widget and Gravatars #53943
    Stewart
    Member

    Hi,

    you can try this plugin Simple Local Avatars

    Hope this helps
    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    August 3, 2013 at 9:20 am in reply to: Executive 2.0 – # of comments not showing #53942
    Stewart
    Member

    Hi,

    I'm going to guess you have resolved this as on the post you link I can see the # of comments 54.

    If not let us know.

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 31, 2013 at 12:12 pm in reply to: How to make homepage display 3 widget areas just like footer? #53410
    Stewart
    Member

    Hi James,

    Sorry for the late reply email has been down for 2 days 🙁

    Ok do you have a link to the site in question, ill take a look at what you got so far to see which css clasess you will need to add.

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 31, 2013 at 12:11 pm in reply to: Increase Margins #53409
    Stewart
    Member

    Your welcome, Glad it helped

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

    July 27, 2013 at 9:53 am in reply to: Genesis Beta 2 Beginner #52811
    Stewart
    Member

    Hi,

    Heres a few videos you could check out : http://studiopress.tv/.

    But YES to all your things important to you, you should not be limited by Genesis at all, think of it as a very well coded Parent Theme which you build all your child themes from. So when Genesis gets updated your child theme stays untouched.

    I've been developing with genesis for a while now and would not change, only thing is like any framework there is a learning curve.

    Not sure on a Genesis Beta test installation tbh maybe contact the guys @studiopress pre-sales department

    Stewart


    WordPress Developer – Need help upgrading to Genesis 2.0? – My Blog
    Follow me on Twitter

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 130 total)
1 2 3 … 5 6 7 →

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