• 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

Len

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 81 total)
← 1 2 3 4 5 →
  • Author
    Posts
  • December 10, 2012 at 9:25 pm in reply to: Date & Byline – Eleven40 Theme #4378
    Len
    Participant

    Hi denissemarie,

    Re 2nd question: As Susan stated, Genesis Simple Hooks is probably the easiest way to do it. An alternative method is add the following to Eleven40's functions.php file ...

    // Relocate post info to after post
    remove_action( 'genesis_before_post_content', 'genesis_post_info' );
    add_action( 'genesis_after_post_content', 'genesis_post_info' );

    December 10, 2012 at 5:24 pm in reply to: Genesis and bbPress #4312
    Len
    Participant

    Hi Jen,

    That's perfect! I had already figured out how to disable the extra settings but it was site-wide, not what I really wanted. I was trying to figure out how to disable them on the bbPress profile page only.

    Thanks a million. You saved me a whole bunch of time. 🙂

    December 10, 2012 at 2:54 pm in reply to: Genesis and bbPress #4260
    Len
    Participant

    Hi Jen

    Already using that plugin. Deactivated all other plugins to rule out any potential conflicts. I'm going to dig into the Genesis core to see if I can figure out what is what.

    December 8, 2012 at 8:33 am in reply to: Numerical navigation Minimum #3835
    Len
    Participant

    Doh! The problem exists in all of my child themes as well. Guess I'm pushing out updates. I like your solution better John. I'm going to go with that. 🙂

    December 8, 2012 at 8:00 am in reply to: Numerical navigation Minimum #3830
    Len
    Participant

    Awesome John! Just confirmed the problem with Outreach and verified your solution.

    December 8, 2012 at 5:47 am in reply to: Display secondary menu on one page only #3828
    Len
    Participant

    Hi karentiede,

    You can try the Genesis Simple Menus plugin. It does what I think you want.
    http://wordpress.org/extend/plugins/genesis-simple-menus/

    November 20, 2012 at 11:33 pm in reply to: "Older Posts" link not working #1066
    Len
    Participant

    You're most welcome! 🙂

    ps: I already had a look at your other thread but that one has me stumped.

    November 20, 2012 at 11:25 pm in reply to: "Older Posts" link not working #1064
    Len
    Participant

    I'm looking at a fresh copy of that theme right now. I see in functions.php it is forcing a content-sidebar layout for the home page. Open up Freelance's functions.php file and comment out this bit ...

    // Force layout on homepage
    add_filter('genesis_pre_get_option_site_layout', 'freelance_home_layout');
    function freelance_home_layout($opt) {
    if ( is_home() )
    $opt = 'content-sidebar';
    return $opt;
    }

    November 20, 2012 at 11:16 pm in reply to: "Older Posts" link not working #1062
    Len
    Participant

    Well for one thing, the Freelance theme comes with a custom widgetized home page (which I forgot about). But there seems to be some kind of error in the home.php file. Try renaming Freelance's home.php file to something else, like home5.php or whatever.

    November 20, 2012 at 11:13 pm in reply to: "Older Posts" link not working #1061
    Len
    Participant

    Sure. I'm hanging around the forum, nothing better to do. 🙂

    November 20, 2012 at 11:07 pm in reply to: "Older Posts" link not working #1059
    Len
    Participant

    For the navigation to work the front page needs to be set to display "Your latest posts".

    November 20, 2012 at 10:58 pm in reply to: "Older Posts" link not working #1057
    Len
    Participant

    Hi cyberinfinity,

    It sounds like you have set a static page for the home page, probably the blog page.

    November 20, 2012 at 10:02 pm in reply to: 2 Websites Recently Completed #1050
    Len
    Participant

    Nice work Seth! I like the first one simply because I'm a HUGE fan of the "minimalist" look - crisp and clean. I like the second one because of its uniqueness.

    November 20, 2012 at 9:47 pm in reply to: Move comments link below post? #1046
    Len
    Participant

    Hi saffron avenue,

    The easiest way would probably be to use the Genesis Simple Hooks plugin. Additionally, have a look at these pages:

    1. Post Info
    2. Post Meta
    3. Shortcode Reference
    4. Hook Reference

    With the Genesis Simple Hooks plugin you can easily unhook various functions from hooks and either execute shortcodes or PHP on them. Give the plugin a go. If you need further help come on back. 🙂

    November 20, 2012 at 9:41 pm in reply to: exclude category in home page serenity theme #1045
    Len
    Participant

    Hi jwilson,

    Are you using widgets on the home page or just a standard blog format?

    November 20, 2012 at 8:19 pm in reply to: Read More Button #1026
    Len
    Participant

    Hi prajwaldesai

    It looks like you're using the Content Limit (as opposed to excerpts) to display content. If you view source, you'll see a line of text, part of which reads ...

    class="more-link">[Read more...]

    Now we know what CSS selector to target - it is the a.more-link

    All you need to do is add the following to the style.css file ...

    a.more-link {
    your styling rules
    }

    For instance ...

    a.more-link {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background-color: #e96a2a;
    border-radius: 3px;
    color: #fff !important;
    float: right;
    font-size: 13px;
    font-weight: normal;
    padding: 8px 12px 6px;
    text-align: center;
    text-decoration: none;
    }

    This will give you a button that has a slightly rounded border (3px), a background colour (#e96a2a), a font colour (#fff), it floats right, has a font size of 13px with a normal weight, a padding of 8px-top, 12px-sides and 6px-bottom, the text is centered and there is no text decoration.

    a.more-link:hover {
    background-color: #444;
    text-decoration: none;
    }

    When you hover over the button the background colour will change to #444 (dark grey) and no text-decoration.

    Use your imagination and style it however you want. 🙂

    To get rid of the brackets add the following to your theme's functions.php file ...

    /** Modify the Genesis content limit read more link */
    add_filter( 'get_the_content_more_link', 'corporate_read_more_link' );
    function corporate_read_more_link() {
    return '... <a class="more-link" href="' . get_permalink() . '">Read More ...';
    }

    This will give you Read More followed by 3 dots. Insert whatever you want there.

    Always make a backup of your files before editing them so you can revert if you make a mistake.

    November 19, 2012 at 6:02 pm in reply to: New Plugin: Genesis Widgetized Archive #767
    Len
    Participant

    Fantastic work David! Playing with it right now! 🙂

    November 17, 2012 at 11:22 am in reply to: Comment Policy Box #442
    Len
    Participant

    HTML and translatable text should be separated using sprint()

    Good catch! Thanks Nick!

    November 15, 2012 at 5:50 pm in reply to: Forum Bugs and Issues #244
    Len
    Participant

    @Susan

    You should be able to change the "display" name in your profile.

    November 15, 2012 at 4:34 pm in reply to: Redirect non-logged in users #232
    Len
    Participant

    Awesome stuff Jon. This is the type of thing (as well as Sozo's Isotope post) that is going to make this community forum rock! 🙂

  • Author
    Posts
Viewing 20 posts - 61 through 80 (of 81 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