• 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

Chuck

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 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • February 6, 2019 at 5:11 am in reply to: Landing page template for post #489338
    Chuck
    Member

    The easiest way is with theme versioning. There is a good lab at KnowtheCode which explains the process. The first video is free and gives you the basic idea.

    Genesis Version – Ensure Your Latest Changes Go Out to the Browser

    Chuck Smith


    Chuck Smith
    Twitter: @polishedwp

    February 3, 2019 at 6:37 pm in reply to: Landing page template for post #489270
    Chuck
    Member

    You should be able to setup template file for a post type. Here is a gist which may help:

    Also look at the WordPress Template Heirarchy in the Codex.


    Chuck Smith
    Twitter: @polishedwp

    April 19, 2018 at 3:52 pm in reply to: Academy Pro: Remove Featured images from Category template #219124
    Chuck
    Member

    Thanks Brad, I ended up wrapping in a function:

    add_action( 'genesis_entry_header', 'cs_category_no_image');
    function cs_category_no_image() {
    	if (is_category( 'news')) {
    		remove_action( 'genesis_entry_header', 'genesis_do_post_image', 8 );
    	}
    }
    

    Works perfectly.


    Chuck Smith
    Twitter: @polishedwp

    April 19, 2018 at 1:57 pm in reply to: Academy Pro: Remove Featured images from Category template #219120
    Chuck
    Member

    Brad, I have been working with this theme and have tried the above. I need to remove the images in the category "news" so, none of the post use featured images. BUT Academy Pro grabs an image from the post to create a post thumbnail that is included above the post.

    I created a category-news.php template. I added a "content-sidebar" layout just to test if it was working and it is.

    However, the above does not remove the image: http://ccec2.flywheelsites.com/category/news/

    I wonder if /lib/featured-image.php or /lib/grid-layout.php is running after the template? Any help would be appreciated.


    Chuck Smith
    Twitter: @polishedwp

    May 29, 2017 at 4:19 am in reply to: Church Themes #207120
    Chuck
    Member

    Thanks Standiou but I am looking for Genesis themes. I am working on developing a CPT plugin that would meet my needs. I basic functionality so far. I need to tweak page templates and figure out custom widgets, then I will release to the repository.


    Chuck Smith
    Twitter: @polishedwp

    August 9, 2015 at 9:09 pm in reply to: Change h1 title to h2 title on teasers. Genesis Teasers Plugin #161884
    Chuck
    Member

    Interesting problem. When you look at the source code of the page, the titles are being displayed as H2, but the CSS class (.entry-title) is associated with H1.

    You might want to edit your style.css and separate the entry-title class. No guarantee it will work, but try this:

    h2, .entry-title {
        font-size: 4rem;
        font-family: Sue Ellen Francisco;
        color: #A1BBC9;
        text-transform: uppercase;
    }

    Chuck Smith
    Twitter: @polishedwp

    August 8, 2015 at 4:03 pm in reply to: Reverse Post Order #161798
    Chuck
    Member

    Function was stripped:

    add_action( 'pre_get_posts', 'prefix_reverse_post_order' );
    
    function prefix_reverse_post_order( $query ) {
    	if ( is_admin() )
    		return;
    	
    	// Only change the query for post archives.
    	if ( $query->is_main_query() || is_front_page() || is_archive() || is_post_type_archive() ) {
    		$query->set( 'orderby', 'date' );
    		$query->set( 'order', 'ASC' );
    	}
    }

    Chuck Smith
    Twitter: @polishedwp

    August 7, 2015 at 8:59 pm in reply to: Reverse Post Order #161772
    Chuck
    Member

    Okay I figured it out... I could not get that function to work either. I found this:

    Rewrote the function to check for either front-page, archive page, or archive post. I tested here on a clean sub-domain with Genesis Sample installed. Look at the front-page and the blog page an notice the date order of the posts.

    http://sample.polishedwp.com/

    Chuck Smith
    Polishedwp.com


    Chuck Smith
    Twitter: @polishedwp

    August 7, 2015 at 12:45 pm in reply to: Reverse Post Order #161738
    Chuck
    Member

    Hey,
    Try these functions listed here:
    https://surefirewebservices.com/how-to-reverse-the-post-order-using-the-genesis-framework/

    Looks they should work for you.


    Chuck Smith
    Twitter: @polishedwp

    February 12, 2015 at 10:01 am in reply to: Outreach SLider Image Size #140609
    Chuck
    Member

    I have run across a few other oddities when I compare my site that I am managing and the Outreach Demo.

    Slider image is is the default 1140x460

    Looking at the thumbnail images sizes in Home-Bottom:
    When I right click on the image in Firefox and view info in the Demo the image size reads:
    285px x 160px (scaled to 263px x 148px)

    However my site http://wumcriegelwood.org/ reads:
    427px x 240px (scaled to 263px x 148px)

    Looking at the thumbnail images sizes in the sidebar of a page for Latest podcast:
    Demo site: http://my.studiopress.com/themes/outreach/#demo-full

    When I right click on the image in Firefox and view Image Info in the Demo the image size reads:
    300px x 150px (scaled to 290px x 145px)

    However my site on page http://wumcriegelwood.org/ reads:
    427px x 240px (scaled to 290px x 163px)

    Any ideas of what may be causing these issues?

    Help and feedback would be appreciated.


    Chuck Smith
    Twitter: @polishedwp

    June 6, 2014 at 4:23 pm in reply to: Theme Choice #108402
    Chuck
    Member

    Thanks ...I was noticing that too...


    Chuck Smith
    Twitter: @polishedwp

    May 2, 2013 at 6:04 pm in reply to: Corporate Theme Featured Image Widget #39008
    Chuck
    Member

    After reviewing the page source, it looks like something is resizing the image to 150x100...


    Chuck Smith
    Twitter: @polishedwp

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

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