• 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

Peter

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 56 total)
1 2 3 →
  • Author
    Posts
  • February 27, 2013 at 5:36 am in reply to: Problem with Responsive Slider #23077
    Peter
    Member

    Just a guess but I think that shadow might be where the excerpt shows up.. have you set the slider to display content? If so, try turning that off and see if the shadow disappears..

    February 26, 2013 at 6:54 pm in reply to: Logging out to LogIn Page #23030
    Peter
    Member

    Hi there.

    Adding this code to your child theme functions.php file should do the trick;

    add_filter( 'logout_url', 'custom_logout_url' );
    function custom_logout_url( $logout_url ) {
    	return add_query_arg( 'redirect_to', home_url(), $logout_url );
    }
    February 26, 2013 at 6:09 pm in reply to: How to Move the Logo Down #23014
    Peter
    Member

    Glad that worked!

    The "left 20px" is the horizontal and vertical positioning of the background image..

    February 26, 2013 at 5:46 pm in reply to: How to Move the Logo Down #23005
    Peter
    Member

    You could either edit your logo.png file to add some white space to the top, or use some CSS code to position your logo a bit lower.. something like this should work;

    .header-image #header #title-area {
    	background: url(images/logo.png) left 20px no-repeat;
    }
    February 21, 2013 at 1:40 pm in reply to: Prose, reducing gap between teasers #22036
    Peter
    Member

    Oops, you are quite right Wendy.. I forgot Prose had custom CSS functionality.. sorry about that @albigin and thank you Wendy!

    February 21, 2013 at 11:21 am in reply to: Linking to a Flash file #22003
    Peter
    Member

    Hi Chrissy.

    I had a little look around and it appears you can link to specific pages.. here is an example link to page 4;

    http://onlinedigitalpublishing.com/publication/?i=109026&p=4

    You can get to the page links under the main Share menu.

    February 21, 2013 at 11:11 am in reply to: Swapping header-right via functions.php #21999
    Peter
    Member

    It sounds like you are essentially wanting to change what is displayed in the sidebar? If so, I'm not sure unregistering and registering sidebars is the best approach. It might be easier to leave the sidebar in place and just change what is displayed in it.

    Also, if you need to know if a visitor is logged in, the is_user_logged_in() function will probably do the job more reliably than checking for cookies.

    February 21, 2013 at 10:36 am in reply to: How to show particular posts with Genesis Featured Posts #21985
    Peter
    Member

    Hi Penny.

    I think the easiest way would be to create a category for featured posts, then specify that category in the widget..

    February 21, 2013 at 10:32 am in reply to: Prose, reducing gap between teasers #21984
    Peter
    Member

    Hi there.

    Do you mean the gap between the bottom of one post and the title of the next one?

    If so, you could add the following to your child theme style.css file;

    .post {
    	margin-bottom:15px;
    }

    Assuming you want a 15px gap between teasers/posts..

    February 20, 2013 at 9:22 am in reply to: Newbie saying hi #21661
    Peter
    Member

    Hello Amy!

    February 20, 2013 at 9:18 am in reply to: Genesis UK #21657
    Peter
    Member

    Great idea guys!

    A UK based directory for people who need a Genesis professional to work on their site, but also a directory for Genesis developers/designers who want to outsource some of their work..

    And if we had meetups at some point in the future that would be icing on the cake 🙂

    I'm more than happy to contribute..

    February 20, 2013 at 8:59 am in reply to: Remove header widget #21648
    Peter
    Member

    The header-right widget area is added in the main Genesis framework so you'd have to replace that code with your own, minus the widget area..

    Adding this to your child theme functions.php file should do the trick;

    remove_action( 'genesis_header', 'genesis_do_header' );
    add_action( 'genesis_header', 'custom_genesis_do_header' );
    function custom_genesis_do_header() {
    	echo '<div id="title-area">';
    	do_action( 'genesis_site_title' );
    	do_action( 'genesis_site_description' );
    	echo '</div><!-- end #title-area -->';
    }
    February 19, 2013 at 6:12 am in reply to: Seperate Picture for Post Thumbnail rather than using image from post – Minimum #21270
    Peter
    Member

    Ok. In your functions.php file on line 66 there is a function which displays the featured images.. it looks like this;

    /** Add the featured image section */
    add_action( 'genesis_after_header', 'minimum_featured_image' );
    function minimum_featured_image() {
    	if ( is_home() ) {
    		echo '<div id="featured-image"><img src="'. get_stylesheet_directory_uri() . '/images/sample.jpg" /></div>';
    	}
    	elseif ( is_singular( array( 'post', 'page' ) ) && has_post_thumbnail() ){
    		echo '<div id="featured-image">';
    		echo get_the_post_thumbnail($thumbnail->ID, 'header');
    		echo '</div>';
    	}
    }

    If you change it to this;

    /** Add the featured image section */
    add_action( 'genesis_after_header', 'minimum_featured_image' );
    function minimum_featured_image() {
    	if ( is_home() ) {
    		echo '<div id="featured-image"><img src="'. get_stylesheet_directory_uri() . '/images/sample.jpg" /></div>';
    	}
    	/*
    	elseif ( is_singular( array( 'post', 'page' ) ) && has_post_thumbnail() ){
    		echo '<div id="featured-image">';
    		echo get_the_post_thumbnail($thumbnail->ID, 'header');
    		echo '</div>';
    	}
    	*/
    }

    the featured images on single pages won't be shown above the title, so you can use them for the thumbnails.

    Edit: the forum is mucking about with the ampersands and turning them into #038; - they should be a plain ampersand in your code..

    Does that do what you need?

    February 19, 2013 at 5:59 am in reply to: Seperate Picture for Post Thumbnail rather than using image from post – Minimum #21261
    Peter
    Member

    Ah.. I just checked.. do you mean the featured image which appears above the post title on single posts?

    February 19, 2013 at 5:35 am in reply to: Seperate Picture for Post Thumbnail rather than using image from post – Minimum #21257
    Peter
    Member

    Hi Ross.

    Just a quick guess here, but have you tried adding featured images to your posts? I think featured image images take precedence over images in the post content for the thumbnails..

    February 19, 2013 at 5:29 am in reply to: Post List #21256
    Peter
    Member

    The Featured Posts widget does let you specify the number of posts to display in the list, how much of each post content to show, whether to show a thumbnail image for each post ..etc. I think it might do what you need..

    February 18, 2013 at 6:08 pm in reply to: Below Footer #21150
    Peter
    Member

    Hi there.

    Have a look at the code on this page;

    Footer

    February 18, 2013 at 6:05 pm in reply to: Post List #21148
    Peter
    Member

    Hi Erik.

    Genesis comes with a Featured Posts widget, available under the Appearance -> Widgets menu..

    Is that the kind of thing you are looking for?

    February 18, 2013 at 5:53 pm in reply to: Removing Post Info From Home Page Loop #21143
    Peter
    Member

    Hi Sean.

    I think Streamline moves the post info.. try using;

    remove_action( 'genesis_before_post', 'genesis_post_info' );
    February 18, 2013 at 5:33 pm in reply to: How to limit archive #21132
    Peter
    Member

    You can use the following code to limit the number of items returned by the archives widget;

    add_filter( 'widget_archives_args', 'custom_widget_archives_args' );
    function custom_widget_archives_args( $args ) {
        $args['limit'] = 6;
        return $args;
    }
  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 56 total)
1 2 3 →

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