• 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

MM

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 - 81 through 100 (of 123 total)
← 1 2 3 4 5 6 7 →
  • Author
    Posts
  • March 13, 2013 at 9:59 am in reply to: How to make your header / top nav always show? #25867
    MM
    Member

    Thks csbeck and brad.  @csbeck - did you insert that in style.css ?

    March 13, 2013 at 7:22 am in reply to: Consistency across Home.php featured post displays and categories / page 2 etc #25828
    MM
    Member

    Hi Burridge

     

    Thanks for this! Like you, learning on the fly here. Still unable to fix via your workaround for page 2 displays - any ideas?

     

    Other results to report for Eleven40 theme...

     

    Category / Tag Pages to Mirror Home

    Strangely, no customisation was needed. I duplicated home.php to create category.php and tag.php - and that worked.

    Changing the function as suggested (in Eleven40 at least) led to parse errors.

     

    Blog Content Etc

    The advice didn't change the text content limit. But changing that in Genesis > Theme Settings, to be the same as in Home.php, made this work. I guess that's something to do with the homepage pulling settings from home.php, but the Blog page... pulling settings from Genesis > Theme Settings.

     

    Page 2 Same as Home

    Interestingly,

    http://mikemetcalfe.co/blog/page/2/   - THIS WORKS  (displaying like home)

    http://mikemetcalfe.co/page/2/             - THIS DOESN'T (still showing a grid)

     

    Have tried the following on home.php...

     

    1st - which failed

    My home.php was missing the 3 lines below...

    ‘grid_image_size’ => 600,
    ‘grid_image_class’ => 'alignnone post-image',
    ‘grid_content_limit’ => 145,

    I inserted them, made them mirror feature settings. Still didn't work.

     

    2nd - which failed

    I changed:

    /** Do nothing on page 2 or greater */
    if ( get_query_var( 'paged' ) >= 2 )
    return;

    To:

    /** Do nothing on page 2 or greater */
    if ( get_query_var( 'paged' ) >= 1000 )
    return;

    Thinking it'd only kick in after 1000 archive pages. Didn't work.

     

    3rd - which failed

    I deleted

    <?php
    /** Add the home featured section */
    add_action( 'genesis_before_loop', 'eleven40_home_featured' );
    function eleven40_home_featured() {

    /** Do nothing on page 2 or greater */
    if ( get_query_var( 'paged' ) >= 2 )
    return;

    genesis_widget_area( 'home-featured', array(
    'before' => '<div class="home-featured widget-area">',
    ) );

    }

    March 12, 2013 at 4:45 pm in reply to: Get rid of or effectively disable grid loop? #25739
    MM
    Member

    Hi Burridge and Flameno

    Good reading above. I had a question along these lines...

    Consistency across Home.php featured post displays and categories / page 2 etc

    If you can provide insights to fix that problem, that's great!

    Thks,

    March 12, 2013 at 4:01 pm in reply to: How to remove featured image on Minimum theme post page? #25734
    MM
    Member

    Thanks Bill, Joyce. Will try that avenue. Nice theme tweaks there also Bill.

    March 12, 2013 at 12:13 pm in reply to: How to remove featured image on Minimum theme post page? #25680
    MM
    Member

    Thanks Joyce, have found advice on removing the featured fully. It's below.

    Still wondering about:

    Also if possible, is there a way on the homepage (www.hayleywebb.com) to insert a small tile 90 x 90 as a preview on the post preview grid of 6.

     

    -----
    for Minimum, you can alter this function in the functions.php file to remove the post image:

    /** 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>';
    }
    }

    Just remove this part:
    elseif ( is_singular( array( 'post', 'page' ) ) && has_post_thumbnail() ){
    echo '<div id="featured-image">';
    echo get_the_post_thumbnail($thumbnail->ID, 'header');
    echo '</div>';
    }

    March 12, 2013 at 7:05 am in reply to: How to remove featured image on Minimum theme post page? #25634
    MM
    Member

    Thanks Joyce , it's Minimum Theme. Does that change any of the above advice? Cheers!

    March 12, 2013 at 5:26 am in reply to: Eleven40 – control length / setup of homepage and post previews #25628
    MM
    Member

    Hi Anyone or Anita,

    On mikemetcalfe.co, I've customised post previews on home.php as per http://mikemetcalfe.co

    But I want previews on category pages (Eg. http://mikemetcalfe.co/category/tools-hints-tips/) and page 2, 3 etc (eg. http://mikemetcalfe.co/page/2/) exactly the same as home.

    I couldn't see in home.php or functions.php how to customise this? Any advice out there? Thks!

     

    March 6, 2013 at 5:10 pm in reply to: Space between text on Genesis Simple Hooks footer text? #24647
    MM
    Member

    Thks Charlie. It's mikemetcalfe.co

    February 28, 2013 at 8:30 am in reply to: How to change page-title.php formatting controls? #23266
    MM
    Member

    Hi Firstname_galo

    Thanks and here's quick answers:

     

    1) Check out this thread:

    Minimum Theme – How to change the Homepage social icon image and link?

    2) Think the slider is just above the text in the appearance > widgets section.

     

    Good luck!

     

     

    February 23, 2013 at 5:30 pm in reply to: How to control the primary nav to only click dropdowns items? #22475
    MM
    Member

    Cheers Brad!

    February 22, 2013 at 7:26 am in reply to: JetPack – How to customise Comments or Sharing header fonts? #22218
    MM
    Member

    Cheers Chris - yes thought you had some secret advice that wasn't elsewhere online. Thanks for trying! 😉

    February 22, 2013 at 7:14 am in reply to: JetPack – How to customise Comments or Sharing header fonts? #22216
    MM
    Member

    Strange? Thanks Chris.  It's mikemetcalfe.co - any advice on exactly what to use appreciated. 😉

    February 22, 2013 at 5:24 am in reply to: JetPack – How to customise Comments or Sharing header fonts? #22202
    MM
    Member

    Thanks Chris!

    Alas doesn't seem to work.

    Is this perhaps being blocked by using Jetpack Comments?

    Cheers, Michael

    February 22, 2013 at 3:31 am in reply to: How to change the primary menu hover behaviour? #22171
    MM
    Member

    Legend, thanks Sridhar!

    February 22, 2013 at 2:52 am in reply to: JetPack – How to customise Comments or Sharing header fonts? #22166
    MM
    Member
    This reply has been marked as private.
    February 20, 2013 at 11:05 am in reply to: Minimum Theme – How to change the Homepage social icon image and link? #21690
    MM
    Member

    rockstars, thanks guys.

    February 19, 2013 at 4:28 pm in reply to: Minimum – How to change the text banner per page title ? #21487
    MM
    Member

    Hi Brad / Anyone,

     

    Still trying to change the text to display as follows (see hayleywebb.com)

     

    home page: as it currently show... 'Push your Limits' etc

    blog category page:    name of category

    blog article page:  title of the post

    other pages eg. About  to say 'About'

     

    Instructions appreciated, cheers!

    February 13, 2013 at 1:51 pm in reply to: Minimum Theme – How to Change Homepage Picture to Featured Post Image Slider? #20129
    MM
    Member

    Thks Anitac, all working after trial and error 😉

    February 13, 2013 at 1:03 pm in reply to: Minimum Theme – Home and blog category pages – number of displayed posts? #20119
    MM
    Member

    Oops... thanks Susan. Lots of different locations for settings 😉

    February 11, 2013 at 4:23 pm in reply to: Minimum Theme – How to Change Homepage Picture to Featured Post Image Slider? #19711
    MM
    Member

    Thanks Anitac.

    Trying to solve this one still...

    Per the article...

    When I replace;

    echo ”; ‘<img src="'. get_stylesheet_directory_uri() . '/images/sample.j

    With this:

    echo ”;
    genesis_widget_area( ‘home-slider’, array( ‘before’ => ”, ) );
    echo ”;

    I get a parse error every time and have to reload functions.php.

    Any ideas? Thanks!

  • Author
    Posts
Viewing 20 posts - 81 through 100 (of 123 total)
← 1 2 3 4 5 6 7 →
« 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