• 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

KarenLeighBurton

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 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • January 25, 2016 at 1:59 pm in reply to: Jessica Theme missing style.css #177502
    KarenLeighBurton
    Member

    Thank you Victor, I may move the files around and rezip myself. Working through lots of pain, leaking appendix and insurance won't approve surgery until it ruptures. It's hard to think.

    January 25, 2016 at 1:55 pm in reply to: Jessica Theme missing style.css #177500
    KarenLeighBurton
    Member

    I can't get to the developer support because apparently I have to setup an account for each new third party theme now??? even though I bought my pro pack like a gazillion years ago - I have zero clue what my transaction ID would be, I have no idea when I bought it - other than to say you all had maybe 10 themes at the time, I think it was 2007,08,09 ish but i have no idea. so I don't even know how to report anything other than in the forum at this point unless it relates to a sp child theme.

    little frustrated, sorry. not trying to take it out on you - been in the hospital for a few days and a bit frustrated.

    January 25, 2016 at 1:46 pm in reply to: Jessica Theme missing style.css #177498
    KarenLeighBurton
    Member

    This is the theme - I'm guessing it's new. http://my.studiopress.com/themes/jessica/

    April 8, 2014 at 8:16 pm in reply to: Agency/Woo Commerce variations NOT deleting #99252
    KarenLeighBurton
    Member

    no we've never gotten a response or a fix.
    thank you for escalating

    April 8, 2014 at 8:15 pm in reply to: Genesis eNews and Greenrope #99251
    KarenLeighBurton
    Member

    no we never managed to get this working. I finally convinced him to get far far far away from greenrope and migrate to mailchimp (yay). but thank you for checking in.

    October 5, 2013 at 10:27 am in reply to: Slider on home, other pages to pull featured image. #65475
    KarenLeighBurton
    Member

    OM Gosh - this is awesome! Thank you so very very much!

    October 1, 2013 at 7:57 pm in reply to: Slider on home, other pages to pull featured image. #65031
    KarenLeighBurton
    Member

    Sridhar, Wondering if you know how to do this same thing on an un-modified version of eleven40 (not the pro). I want to use the page-title widget area to display a slider or image on the homepage, but then on all pages/posts pull the featured image - if none revert to the homepage image. I've asked, I've even tried what you provided above and it's not working...

    its a development site so no url to publish - Child - Eleven40 vs 1.1 Genesis - vs 2.0.1

    I've made no other modifications to this theme at all yet - figured I'd start with this first... Would greatly appreciate if you can help.

    I put this in a page.php template in the theme folder;

    <?php

    add_action( 'genesis_before_content_sidebar_wrap', 'eleven40_page_title' );

    function eleven40_page_title() {

    if (has_post_thumbnail( $post->ID ) ) :
    echo get_the_post_thumbnail($post->ID);

    else :

    if ( is_active_sidebar( 'page-title' ) ) :
    echo '<div id="page-title">';
    dynamic_sidebar( 'page-title' );
    echo '</div><!-- end #page-title -->';

    endif;

    endif;

    }

    genesis();

    October 1, 2013 at 7:36 pm in reply to: Set Featured image in Page-Title area on pages/posts in eleven40 #65027
    KarenLeighBurton
    Member

    Any takers? come-on it can't be that hard? I just don't know what i'm doing for the call. I just need to know how to call the page/post "featured-image" to appear in the "page-title" section on all pages/posts EXCEPT the homepage.

    I created a page.php and placed within the theme.
    Added this code - trying to model after another post - not working...

    <?php

    add_action( 'genesis_before_content_sidebar_wrap', 'eleven40_page_title' );

    function eleven40_page_title() {
    echo '<div id="inner">';

    if (has_post_thumbnail( $post->ID ) ) :
    echo get_the_post_thumbnail($post->ID);

    else :

    if ( is_active_sidebar( 'page-title' ) ) :
    echo '<div id="page-title">';
    dynamic_sidebar( 'page-title' );
    echo '</div><!-- end #page-title -->';

    endif;

    endif;
    echo '</div><!-- end #inner -->';

    }

    genesis();

    this is really my weak point, can someone please help?

    August 28, 2013 at 12:46 pm in reply to: Slider on home, other pages to pull featured image. #59277
    KarenLeighBurton
    Member

    well I created a special widget area called welcome-text in the theme which was assigned to "all pages/posts/home" etc. I figured out I needed to acutally use the home-slider widget section for the slideshow - once i moved the slideshow there it worked. I did have to apply a div to the featured image so that it just wasn't left aligned on the top of the page.

    I made this edit to the page.php code;
    <?php

    add_action( 'genesis_after_header', 'agency_home_welcome_helper' );

    function agency_home_welcome_helper() {

    echo '<div id="home-welcome">';
    if (has_post_thumbnail( $post->ID ) ) :
    echo get_the_post_thumbnail($post->ID);
    echo '</div><!-- end #home-welcome -->';

    else :

    if ( is_active_sidebar( 'home-slider' ) ) :
    echo '<div id="home-slider">';
    dynamic_sidebar( 'home-slider' );
    echo '</div><!-- end #home-slider -->';

    endif;

    endif;

    }

    genesis();

    August 28, 2013 at 12:13 pm in reply to: Slider on home, other pages to pull featured image. #59265
    KarenLeighBurton
    Member

    nevermind! I think I may have figured it out and fixed it - woohoo!
    Thank you very much.

    August 28, 2013 at 12:05 pm in reply to: Slider on home, other pages to pull featured image. #59260
    KarenLeighBurton
    Member

    Thank you - 🙂

    That works - but it is still running the slider so it now has the slider on top and the featured image below;
    http://www.readyvillemill.com/about/

    any additional suggestions?

    August 8, 2013 at 9:19 am in reply to: Quattro change grid #54923
    KarenLeighBurton
    Member

    if i remove the comma I get some fatal error, but I'll try again as the article you linked is different than one I was working with. (thank you) and I've tried setting the number of posts in a few different places, I'm wondering if something is being called wrong somewhere else and I just don't know enough php to read it/find it.

    July 2, 2013 at 3:45 pm in reply to: Simple Social Icons Missing #48883
    KarenLeighBurton
    Member

    I can't figure out what is going on - its driving me insane... I've asked for help i get the same thing some error in java - I don't do java, understand java etc.

    Im runinning studiopress genesis with the manhattan child theme.

    the plugin works FINE until I make the site "appear" on the route

    so the wordpress url is http://h0m3.unleashyourpractice.com and the site url is http://unleashyourpractice.com - no server move, no move at all of the core files. literally I follow this article from wordpress: http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory (i copy the htaccess and the index.php to the route and make the changes as told in the article linked... EVERYTHING except the simple social icons works.... I NEED help. Client really really really likes that the icons can be her "colors"... I've tried everything I can think of.

    --oh - there is no social media section in the child theme css and this has happened on MULTIPLE installs on separate websites where I've finally just given up and installed the regular old icons... this client will NOT allow me to use the other.

    February 21, 2013 at 11:20 pm in reply to: make inner pages header click to different url #22147
    KarenLeighBurton
    Member

    Woo Hoo! I finally, after about 30 different restores of the functions.php found the correct way to do this.... so if anyone needs it here it is!!!!!

    add_filter( 'genesis_seo_title', 'child_header_title', 10, 3 );
    /**
    * Change default Header URL.
    */

    function child_header_title( $title, $inside, $wrap ) {
    if ( is_front_page() ) {
    $inside = sprintf( '<a href="http://www.yourdomain.com/" title="%s">%s</a>', esc_attr( get_bloginfo( 'name' ) ), get_bloginfo( 'name' ) );
    } else {
    $inside = sprintf( '<a href="http://www.yourdomain.com/innerpage/" title="%s">%s</a>', esc_attr( get_bloginfo( 'name' ) ), get_bloginfo( 'name' ) );
    }
    return sprintf( '<%1$s id="title">%2$s</%1$s>', $wrap, $inside );
    }

    February 21, 2013 at 10:44 pm in reply to: make inner pages header click to different url #22139
    KarenLeighBurton
    Member

    So, I've found this little piece of code... which works great to just change the url, but i still need the home page header to simply either not link to anything or only link to the sales page (home page)

    function child_header_title( $title, $inside, $wrap ) {
    $inside = sprintf( '<a href="http://mybirthbusinessrocks.com/student-login/" title="%s">%s</a>', esc_attr( get_bloginfo( 'name' ) ), get_bloginfo( 'name' ) );
    return sprintf( '<%1$s id="title">%2$s</%1$s>', $wrap, $inside );
    }

    I tried using a conditional is_front_page() with it, but all it does is give me errors and I have to go in through cpanel and reupload the functions.php.  Can someone tell me what i am doing wrong?

    February 21, 2013 at 9:48 pm in reply to: Genesis Compatibility With My Wishlist Member #22130
    KarenLeighBurton
    Member

    I haven't had any problems with wishlist member in genesis themes. I've got about 4 sites going with it and we love it. we use 1shoppingcart for our ecommerce and wishlist just seems to integrate best with them.

  • Author
    Posts
Viewing 16 posts - 1 through 16 (of 16 total)

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

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