• 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

micki

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 13 posts - 21 through 33 (of 33 total)
← 1 2
  • Author
    Posts
  • March 26, 2013 at 9:49 pm in reply to: Mac version way off – embedded fonts AND the main menu of site #31452
    micki
    Participant

    Hi, It's in maintenance mode, I will need to email you access privately, or? Thanks!

    March 20, 2013 at 9:36 pm in reply to: customizing post meta – snippet not working #29854
    micki
    Participant

    yes, got rid of simple edits, works perfect, thanks

    March 19, 2013 at 1:57 pm in reply to: customizing post meta – snippet not working #29482
    micki
    Participant

    i thought for anyone else who may have this issue, I read on the old forum that simple edits can conflict with snippets, such as the above, added to the functions file when trying to customize post meta.

    http://www.studiopress.com/support/showthread.php?t=122707&highlight=post+meta+description

    March 19, 2013 at 1:45 am in reply to: customizing post meta – snippet not working #29331
    micki
    Participant

    thanks, i did install simple edits but it just makes me curious as to why these aren't working,  the first snippet is from StudioPress...

    March 11, 2013 at 12:24 pm in reply to: Post info – remove author – i give up, no change! #25485
    micki
    Participant

    yes the plugin works, so i guess this is resolved, though i still can't figure out why the snippets didn't work... guess no one else is curious :).

    March 10, 2013 at 11:27 am in reply to: Post info – remove author – i give up, no change! #25319
    micki
    Participant

    got the first one from elektroelch.net

    second (I think :)) - http://www.basicwp.com/edit-author-url-genesis-post-info/

    there are a few examples when i typed in a search on google...

    i have the simple edits installed, where i had modified the footer so did as you suggested, just trying to understand.

    March 10, 2013 at 2:02 am in reply to: Post info – remove author – i give up, no change! #25272
    micki
    Participant

    ok, thanks for the suggestion and I am curious, why won't either of these work? I have added more then a few other snippets and all have worked.

    thanks again! appreciated.

    March 8, 2013 at 1:56 pm in reply to: Add widget area above content on Streamline 2.0.1 #25038
    micki
    Participant

    Ok, adding the if ( is_home() )... to the code i am working with worked great! Sorry if I highjacked this thread, i answered my own question, thanks for your input and help.

    March 8, 2013 at 11:20 am in reply to: Add widget area above content on Streamline 2.0.1 #25014
    micki
    Participant

    I got the code from : http://designsbynickthegeek.com/tutorials/add-widgeted-sidebar

    See, you can tell how novice I am at this stuff... seeing slider and magazine in the code doesn't make sense to me :).

    I am using the MomPrenuer theme.

    Thanks!

    March 8, 2013 at 1:29 am in reply to: Add widget area above content on Streamline 2.0.1 #24951
    micki
    Participant

    oh and sorry, forgot to add, this is a different theme then Streamline.

    March 8, 2013 at 1:27 am in reply to: Add widget area above content on Streamline 2.0.1 #24950
    micki
    Participant

    I probably need to clarify that I am not using it for a slider, I am using it for text only. I apologize for not being more specific. Here is what is working BUT it is on all pages and I only need it for the home page. Maybe I should have opened a new thread... thought it was along the same vein...

    genesis_register_sidebar( array(
    'id'        => 'before-posts-sidebar',
    'name'      => 'Before Posts',
    'description'   => 'This is a sidebar that goes before the posts in the #content.',
    ) );

    add_action( 'genesis_before_loop', 'child_before_posts_sidebar' );
    /** Loads a new sidebar before the posts in the #content */
    function child_before_posts_sidebar() {

    echo '<div class="before-posts-sidebar">';
    dynamic_sidebar( 'before-posts-sidebar' );
    echo '</div>';

    }

    and I added what I think is the correct code for only the home page to:

    add_action( 'genesis_before_loop', 'child_before_posts_sidebar' );
    /** Loads a new sidebar before the posts in the #content */
    function child_before_posts_sidebar() {
    if ( is_home() ) {

    echo '<div class="before-posts-sidebar">';
    dynamic_sidebar( 'before-posts-sidebar' );
    echo '</div>';
    }

    }

    Thank you for your help.

    March 7, 2013 at 9:41 pm in reply to: Add widget area above content on Streamline 2.0.1 #24927
    micki
    Participant

    Thank you! Just wanting to make sure I have this correct before I add it.

    add_action( 'genesis_before_loop', 'child_before_posts_sidebar' );
    /** Loads a new sidebar before the posts in the #content */
    function child_before_posts_sidebar() {
    if ( is_home() ) {

    echo '<div class="before-posts-sidebar">';
    dynamic_sidebar( 'before-posts-sidebar' );
    echo '</div>';
    }

    }

    basically I am just adding the if ( is_home() )

    March 7, 2013 at 8:52 pm in reply to: Add widget area above content on Streamline 2.0.1 #24923
    micki
    Participant

    Hi, Following this and I am confused as to where I would put the conditional tags to have a widget before content be only on the home page.

    Do I add it to this and how exactly? I am challenged this way :).

    In child functions:

    add_action( 'genesis_before_loop', 'child_before_posts_sidebar' );
    /** Loads a new sidebar before the posts in the #content */
    function child_before_posts_sidebar() {

    echo '<div class="before-posts-sidebar">';
    dynamic_sidebar( 'before-posts-sidebar' );
    echo '</div>';

    }

    thanks for any help you can provide.

  • Author
    Posts
Viewing 13 posts - 21 through 33 (of 33 total)
← 1 2
« Previous Page

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

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