• 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

Noe Garcia

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 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • August 21, 2016 at 8:08 am in reply to: Digital Pro – Layout Front Page 1 #191715
    Noe Garcia
    Member

    I changed the color on mine like this, you can just do a font-size: instead.
    .front-page-1,.front-page-1 p,.front-page-1 .widget-title {
    color:#ffffff;
    }

    January 6, 2015 at 6:46 pm in reply to: Any Genesis Theme that could do this? #136226
    Noe Garcia
    Member

    WOW this is nicely explained THANK YOU AGAIN Ren πŸ™‚

    I'm such a noob lol but this forum is AWESOM!

    January 5, 2015 at 1:07 pm in reply to: Any Genesis Theme that could do this? #136124
    Noe Garcia
    Member

    Thank you so much Ren πŸ™‚ I was also thinking Minimum Pro, just need to figure out how could I set a featured image for that post at the top, I think that is a very nice way to open a post. Kind of like Medium.com πŸ™‚

    Have a fantastic YEAR!

    November 23, 2014 at 5:00 pm in reply to: IE looks bad #132608
    Noe Garcia
    Member

    Sorry should have been more specific.
    I was viewing it on IE10, the menu shows vertical instead of horizontal, along with several of the widgets show the same way.

    Should I even be concern about it? I know more people use chrome and firefox I believe, I was just showing someone at work and when it came up I freaked out looking at how crazy it looked on IE10.

    March 4, 2014 at 6:42 pm in reply to: Archie help and question #93447
    Noe Garcia
    Member

    This is awesome - THANK YOU SO MUCH!
    That archive page looks way better now.

    February 23, 2014 at 11:55 am in reply to: I want to change the background in the landing page template #92029
    Noe Garcia
    Member

    Good Day,
    I have somewhat the same question, is it possible to have a background for different landing pages?
    Like if I set a feature image in that landing page to use that as a background.

    April 17, 2013 at 8:15 am in reply to: Turning Genesis Child Theme into Minimalistic Scribe #35942
    Noe Garcia
    Member

    I LOVE YOUR SITE!!!

    It is perfect, so clean and guides your visitors to what's most important 'content'. I am a fan of Zenhabits and been thinking on doing something similar for a small blog I have.

    maybe you can share it LOL πŸ˜‰

    March 27, 2013 at 9:44 am in reply to: Minimum – Post Title #31535
    Noe Garcia
    Member

    You are a GENIUS πŸ™‚

    Thank you so much, one should never wonder to do things that have no experience - but it's so much fun.

    March 27, 2013 at 9:24 am in reply to: Minimum – Post Title #31530
    Noe Garcia
    Member

    Dave, Thank you so much for the quick reply.

    The post I'm talking about is the one in between the social icons. πŸ™

    March 26, 2013 at 12:48 pm in reply to: Excluding Category from Grid Loop #31377
    Noe Garcia
    Member

    Hello - I'm battling with the same thing.

    I'm trying to remove cat Β from the main page, I have try the code you show above but its not working, I use Minimum theme.

    This is what I'm now trying and still nothing - any help? I thought by adding the -cat not in- will get it off but was wrong.

    add_action( 'genesis_loop', 'minimum_grid_loop_helper' );
    function minimum_grid_loop_helper() {
    
    if ( function_exists( 'genesis_grid_loop' ) ) {
    genesis_grid_loop( array(
    'features' => 5,
    'feature_image_size' => '0',
    'feature_image_class' => 'post-image',
    'feature_content_limit' => 0,
    <strong>'category__not_in' =&gt; '5',</strong>
    'grid_image_size' =&gt; 0,
    'grid_image_class' =&gt; 'alignnone',
    'grid_content_limit' =&gt; 1500,
    'more' =&gt; __( '[Read more]', 'minimum' ),
    ) );
    } else {
    genesis_standard_loop();
    }
    
    }
    
    March 7, 2013 at 7:16 pm in reply to: New Custom Site : Photography Client #24911
    Noe Garcia
    Member

    @braddalton Thank you, I will try that.

    March 7, 2013 at 7:02 am in reply to: Would appricate feedback on Metro theme #24764
    Noe Garcia
    Member

    I love websites that are clean and easy to read, yours is no exemption. Very nice!

    One thing, you might want to center that logo there seems to be a little more space on top of the logo than ont the bottom or might be the way you made the design πŸ™‚

    Great job!

    March 7, 2013 at 6:58 am in reply to: New Custom Site : Photography Client #24762
    Noe Garcia
    Member

    Very, very nice website. I love how clean and minimalist it is.

    The name with the two tone black/blue its great.

    My only comment is, does Genesis provide a way for galleries to load on without refreshing the entire page? or does it have to be via plugin and js?

    I struggled on my portfolio to make it in a way that if someone clicks on a small image it will load, then on the next page just like you have with the larger image while clicking left or right loads the next images without refreshing the entire page. (not sure if I explain this correctly)

    Bottom line AWESOME page πŸ™‚

    March 5, 2013 at 10:00 pm in reply to: Is there a Way to Replace a Page H1 Title with a DIV? #24482
    Noe Garcia
    Member

    I found the answer that was provided by Brian Bourn; simply copy/paste the following code to your "functions.php" file on your child theme:

    //***Remove Page Titles From All Pages Except Blog Page Template**/
    add_action( 'get_header', 'bourncreative_remove_page_titles' );
    function bourncreative_remove_page_titles() {
    if ( is_page() && ! is_page_template( 'page_blog.php' ) )
    remove_action( 'genesis_post_title', 'genesis_do_post_title' );
    }

    March 5, 2013 at 9:43 pm in reply to: Is there a Way to Replace a Page H1 Title with a DIV? #24480
    Noe Garcia
    Member

    I have the exact same question.

    It will be great to remove that title from showing when is a page.

    March 3, 2013 at 7:49 pm in reply to: What gallery plugin is this? #23972
    Noe Garcia
    Member

    Thank you so much Anitac πŸ™‚

    I just didn't figure out how to set up the portfolio to showcase the pics nicely.

    I installed fancybox to make them show nicer too.

    Thanks again

    January 21, 2013 at 11:24 am in reply to: Something Majorly Wrong!!! #13503
    Noe Garcia
    Member
    This reply has been marked as private.
  • Author
    Posts
Viewing 17 posts - 1 through 17 (of 17 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