• 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

leemarr

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 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • May 12, 2014 at 6:05 pm in reply to: Adding Featured Images to Front Page in Minimum Pro Theme #104773
    leemarr
    Member

    i've just looked on franktirdo's site and his site shows:

    1. the thumbnail before the title on the featured page ...
    2. the thumbnail to the left of the title on the category/archive page ...
    3. no image on the single post page ...

    i guess it's two different things ...

    is there code to add the thumbnail before the title on a category/archive page ...

    May 12, 2014 at 5:49 pm in reply to: Adding Featured Images to Front Page in Minimum Pro Theme #104771
    leemarr
    Member

    what ls supposed to happen with this code ...

    i understood that the thumbnail would appear before the title on both the feature page and the category/archive page or is this just code for the feature page ...

    May 12, 2014 at 5:27 pm in reply to: Adding Featured Images to Front Page in Minimum Pro Theme #104765
    leemarr
    Member

    i also used the code for before post title

    i have inserted the images and have set featured images set ...

    when i have the featured images turned on i see 2 feature page thumbnails ...

    when i have the featured images turned off i see 1 thumbail before the the title BUT no thumbnails on category (or archive ) page ...

    what am i doing wrong ...

    thanx

    May 8, 2014 at 12:10 pm in reply to: Minimum Pro How To Change #104173
    leemarr
    Member

    finally did it ...

    thanx for your help

    May 6, 2014 at 2:18 pm in reply to: Make logo and navigation full width in Minimum Pro theme #103892
    leemarr
    Member

    i have been to trying get some color into my top header ...
    and it's been frustrating ...

    so three questions for you ...

    1. how did you do the colors ....
    2. how can you remove the thin white space at the top of the menu drop down ...
    3. how did you get the logo image displayed ...

    thanx

    April 30, 2014 at 9:43 pm in reply to: Minimum Pro Menu How To #103154
    leemarr
    Member

    that was easy ...

    i have a further question ...

    what about a color change for that top menu ...

    i'd to see the entire menu area have a black background with white text ...

    how is that accomplished ...

    April 29, 2014 at 1:02 pm in reply to: Featured Image How To #102973
    leemarr
    Member

    as requested here's the code:

    //* Register widget areas

    genesis_register_sidebar( array(
    ‘id’ => ‘home-slider’,
    ‘name’ => __( ‘Home – Slider’, ‘executive’ ),
    ‘description’ => __( ‘This is the slider section on the home page.’, ‘executive’ ),
    ) );
    genesis_register_sidebar( array(
    ‘id’ => ‘home-top’,
    ‘name’ => __( ‘Home – Top’, ‘executive’ ),
    ‘description’ => __( ‘This is the top section of the home page.’, ‘executive’ ),
    ) );
    genesis_register_sidebar( array(
    ‘id’ => ‘home-cta’,
    ‘name’ => __( ‘Home – Call To Action’, ‘executive’ ),
    ‘description’ => __( ‘This is the call to action section on the home page.’, ‘executive’ ),
    ) );
    genesis_register_sidebar( array(
    ‘id’ => ‘home-middle’,
    ‘name’ => __( ‘Home – Middle’, ‘executive’ ),
    ‘description’ => __( ‘This is the middle section of the home page.’, ‘executive’ ),
    ) );

    /** Align featured image left of entry content below entry title */
    add_action( ‘genesis_entry_header’, ‘wpsites_post_image’, 14 );
    /**
    * @author Brad Dalton
    * @example http://wpsites.net/web-design/display-featured-image-before-or-after-entry-title-on-single-posts-pages/
    * @copyright 2014 WP Sites
    */

    function wpsites_post_image() {
    
    if ( !is_singular(‘post’) || ! genesis_get_option( ‘content_archive_thumbnail’ ) )
    return;
    
    if ( $image = genesis_get_image( array( ‘format’ => ‘url’, ‘size’ => genesis_get_option( ‘image_size’ ) ) ) ) {
    printf( ‘%s‘, get_permalink(), $image, the_title_attribute( ‘echo=0′ ) );
    }
    
    }
    April 25, 2014 at 8:03 am in reply to: Featured Image How To #102308
    leemarr
    Member

    no i don't want to insert an image ...

    i want to click the feature image link (in meta box) and either upload an image to display a full image in the post or choose a library item to display a full image ...

    my old theme does exactly this and there is no need to choose the add an image link ...

    April 24, 2014 at 10:59 am in reply to: Featured Image How To #102177
    leemarr
    Member

    that does does the trick but i was trying to avoid doing this because all my posts use the featured image to display the full image in a post ...

    my previous theme used this method ...

    when i switched to genesis exec pro and the minimum pro theme i ran into this problem ...

    April 23, 2014 at 11:50 am in reply to: Featured Image How To #102086
    leemarr
    Member

    the image is not showing up ...
    here's what is displayed :

    view --- http://loop48.com/bump/todays-hot-dog-boy-031414/

    view posts from the rest of category archive page --- http://loop48.com/bump/category/dogworld/

    i placed the code last under the //* Register widget areas --- see below:

    //* Register widget areas
    genesis_register_sidebar( array(
    'id' => 'home-slider',
    'name' => __( 'Home - Slider', 'executive' ),
    'description' => __( 'This is the slider section on the home page.', 'executive' ),
    ) );
    genesis_register_sidebar( array(
    'id' => 'home-top',
    'name' => __( 'Home - Top', 'executive' ),
    'description' => __( 'This is the top section of the home page.', 'executive' ),
    ) );
    genesis_register_sidebar( array(
    'id' => 'home-cta',
    'name' => __( 'Home - Call To Action', 'executive' ),
    'description' => __( 'This is the call to action section on the home page.', 'executive' ),
    ) );
    genesis_register_sidebar( array(
    'id' => 'home-middle',
    'name' => __( 'Home - Middle', 'executive' ),
    'description' => __( 'This is the middle section of the home page.', 'executive' ),
    ) );

    /** Align featured image left of entry content below entry title */
    add_action( 'genesis_entry_header', 'wpsites_post_image', 14 );
    /**
    * @author Brad Dalton
    * @example http://wpsites.net/web-design/display-featured-image-before-or-after-entry-title-on-single-posts-pages/
    * @copyright 2014 WP Sites
    */
    function wpsites_post_image() {

    if ( !is_singular('post') || ! genesis_get_option( 'content_archive_thumbnail' ) )
    return;

    if ( $image = genesis_get_image( array( 'format' => 'url', 'size' => genesis_get_option( 'image_size' ) ) ) ) {
    printf( '%s', get_permalink(), $image, the_title_attribute( 'echo=0' ) );
    }

    }

    April 23, 2014 at 10:17 am in reply to: Featured Image How To #102065
    leemarr
    Member

    can you tell which line to start in functions to edit/replace ...

    thanx

    April 23, 2014 at 9:54 am in reply to: Featured Image How To #102059
    leemarr
    Member

    let me clarify ...

    i want to see a full image displayed in the post (single post page) ...
    will your solution do this ...

    thanx

    April 23, 2014 at 9:43 am in reply to: Responsive Slider How To #102050
    leemarr
    Member

    any suggestions on what slider to use for videos

    November 14, 2013 at 8:42 am in reply to: Minimum Pro: Portfolio Page How To #72936
    leemarr
    Member

    by the way i've just started using studiopress ...

    3 questions:

    1. would you consider a 450 width image (450 x 337 or 450 x 253) to be a dramatic change ...

    2. do you know where in the css to make that change ...

    3. shouldn't the minimum pro designer have made all this easier (ie take less time) ...

    November 14, 2013 at 8:18 am in reply to: Minimum Pro: Portfolio Page How To #72929
    leemarr
    Member
    //* Add new image sizes
    add_image_size( 'portfolio', 540, 340, TRUE );

    what would happen if changed the add image size to another ...
    it doesn't have to be 540 x 340 does it ...

    i've got a kwik reference that i found somewhere ...
    i'm not too sure i understand the difference between the ratios (ie. when to use) ...

    The 16x9 Ratio:
    100 x 56 - not ideal (too small, requires image to be stretched)
    200 x 112 - not ideal (too small, requires image to be stretched)
    300 x 168 - not ideal (small, requires image to be stretched)
    400 x 225 - more ideal (small, requires image to be stretched)
    450 x 253 - most ideal
    500 x 281 - most ideal
    550 x 309 - most ideal
    600 x 337 - most ideal
    650 x 365 - most ideal
    700 x 393 - most ideal
    750 x 421 - most ideal
    800 x 450 - more ideal (file size)
    900 x 506 - less ideal (file size)
    1000 x 562 - less ideal (file size)

    The 4x3 (8x6) Ratio:
    100 x 75 - not ideal (too small, requires image to be stretched)
    200 x 150 - not ideal (too small, requires image to be stretched)
    300 x 225 - not ideal (too small, requires image to be stretched)
    400 x 300 - not ideal (small, requires image to be stretched)
    450 x 337 - most ideal
    500 x 375 - most ideal
    550 x 412 - most ideal
    600 x 450 - most ideal
    650 x 487 - most ideal
    700 x 525 - most ideal
    750 x 562 - most ideal
    800 x 600 - more ideal (file size)
    900 x 675 - less ideal (file size)
    1000 x 750 - less ideal (file size)

    November 14, 2013 at 7:16 am in reply to: Minimum Pro: Portfolio Page How To #72914
    leemarr
    Member

    ok i edited the functions and regenerated the features (only) ...

    the thumbs have changed to:

    image 3 = 540 x 432
    image 2 = 480 x 340
    image 1 = 527 x 340

    so the thumbs are not a uniform size (540 x 340) ...

    November 13, 2013 at 7:27 pm in reply to: Minimum Pro: Portfolio Page How To #72848
    leemarr
    Member

    i did both the way it appears at http://my.studiopress.com/setup/minimum-theme/#step-15 ...
    that's two steps (insert + feature image) ...

    i've been using another theme for years and it's a one step thing (using feature image) ...

    November 13, 2013 at 6:56 pm in reply to: Minimum Pro: Portfolio Page How To #72837
    leemarr
    Member

    yes i've done all this ...
    and i'm stumped ...

    there's got to be another step or two ...

    November 13, 2013 at 6:32 pm in reply to: Minimum Pro: Portfolio Page How To #72828
    leemarr
    Member

    nope that does not change anything on the portfolio page ...

    can you think of anything else ...

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

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