• 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

tomatillodesign

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 25 total)
1 2 →
  • Author
    Posts
  • February 6, 2019 at 11:43 am in reply to: How To Center Top Menu On Infinity Pro #489354
    tomatillodesign
    Member

    This worked for me. Great solution. Thank you!

    October 12, 2016 at 7:36 am in reply to: Make Navigation Sub Menu Align to Left of Parent. #194581
    tomatillodesign
    Member

    I was having this problem too. Here's what I came up with:

    1) Add the CSS class of "menu-right" to the last top-level item in the main menu.

    2) Add this CSS:

    .genesis-nav-menu .menu-right:hover > .sub-menu {
    	right: 280px;
    }
    June 1, 2016 at 1:14 pm in reply to: Conflict between Altitude Pro and Bootstrap Modals plugin #186705
    tomatillodesign
    Member

    I didn't have a domain because this was being developed locally. I solved this problem by including the code for the modal itself in the page header (using Genesis theme options page) rather than in a widget.

    February 3, 2016 at 1:18 pm in reply to: Placeholder Text #178253
    tomatillodesign
    Member

    I think you want this snippet:

    Search Form

    March 16, 2015 at 6:33 am in reply to: Show/Hide All Comments #144602
    tomatillodesign
    Member

    I solved this using this very helpful tutorial:
    http://coreyjmahler.com/topics/create-a-button-to-showhide-wordpress-comments-with-a-click/

    Note that for Genesis themes you should change:

    // Get #comment-section div
    	var commentsDiv = jQuery('#comment-section');

    to

    var commentsDiv = jQuery('#comments');

    February 12, 2015 at 9:06 am in reply to: Cafe Pro: Using ACF to Add Multiple Header Images #140597
    tomatillodesign
    Member

    Any guidance on this? Thanks!

    December 2, 2014 at 9:10 am in reply to: Tag archive page not including attachments #133421
    tomatillodesign
    Member

    Thanks for following up. I couldn't find a good answer so I hacked something together. I created a new Custom Post Type with a media upload, and WordPress default tags and categories picked it up and worked well.

    November 25, 2014 at 1:02 pm in reply to: Using a Visual Editor for Archive Intro Text #132780
    tomatillodesign
    Member

    Thanks for plugin link, however, unless I'm missing something, this doesn't add a Visual Editor to the Genesis "Archive Settings" (primarily the "Archive Intro Text" is what I'm after)...

    September 30, 2014 at 4:27 am in reply to: Clickable Logo AND Clickable Site Title #126243
    tomatillodesign
    Member

    Got it - here's how:

    //* Defines Clickable Logo and adds Blog Info to title
    function special_site_logo() {?><a id="sitelogo" href="<?php bloginfo( 'url' ); ?>"><img src="http://www.example.com/wp-content/uploads/2014/05/logo.jpg" alt="<?php bloginfo('name')?>" title="<?php bloginfo('name')?>" /></a><?php ;
    	}
    add_action( 'genesis_site_title','special_site_logo',5,1);
    September 8, 2014 at 3:16 pm in reply to: Use AgentPress with other Custom Post Types #123485
    tomatillodesign
    Member

    Great, thanks for your help on this.

    September 8, 2014 at 3:07 pm in reply to: Use AgentPress with other Custom Post Types #123481
    tomatillodesign
    Member

    Makes sense. What about with all the functionality that the AgentPress Listings plugin adds? Can this also be customized in a similar way?

    August 9, 2014 at 6:00 am in reply to: Adding After Entry widget area to Custom Post Type #117883
    tomatillodesign
    Member

    Thanks for your help. I was able to get it working with a very similar adjustment. Child Theme (enterprise-pro) --> functions.php, starting in this case on line 72. I just added another if statement:

    //* Hook after post widget after the entry content
    add_action( 'genesis_after_entry', 'enterprise_after_entry', 5 );
    function enterprise_after_entry() {
    
    	if ( is_singular( 'post' ) )
    		genesis_widget_area( 'after-entry', array(
    			'before' => '<div class="after-entry widget-area">',
    			'after'  => '</div>',
    		) );
    
    	if ( is_singular( 'book' ) ) //name of your custom post type here
    		genesis_widget_area( 'after-entry', array(
    			'before' => '<div class="after-entry widget-area">',
    			'after'  => '</div>',
    		) );
    
    }
    July 24, 2014 at 11:12 am in reply to: Background Images on Enterprise Pro #115717
    tomatillodesign
    Member

    Works! Thanks.

    June 12, 2014 at 11:22 am in reply to: Sixteen Nine Pro – entry.content to 100% height? #109492
    tomatillodesign
    Member

    Well, this works for me, at least for now. Thanks for the help.

    June 11, 2014 at 3:39 am in reply to: Archive Headline and Intro Text for All Posts? #109336
    tomatillodesign
    Member

    Thanks, this concept was very helpful. I ended up using Genesis Extender plugin to add a new widget area and then Jetpack Visibility to make it appear only on the main blog page.

    June 9, 2014 at 3:53 am in reply to: Sixteen Nine Pro – entry.content to 100% height? #108573
    tomatillodesign
    Member

    No link because the site is not live yet. Here's a screenshot:
    http://pbrd.co/Sr0LSG

    The lefthand menu column and the right-hand sidebar are longer than the main content block in the middle. Thanks.

    June 3, 2014 at 5:51 am in reply to: Change "Leave a Reply" in Sixteen Nine #107933
    tomatillodesign
    Member

    This is the exact code that I'm using. I want to change "Leave a Reply" to "Leave a Comment." I still don't know why this snippet is not working. Thanks for your help.

    May 31, 2014 at 1:30 pm in reply to: Change "Leave a Reply" in Sixteen Nine #107645
    tomatillodesign
    Member

    Sure. I added this code at the bottom of my theme's functions.php. Screenshot here: http://pbrd.co/RQeguP
    Thanks.

    May 16, 2014 at 4:53 am in reply to: Ambiance Pro Individual Post Background image size #105457
    tomatillodesign
    Member

    Worked, thanks!

    April 28, 2014 at 2:25 pm in reply to: Ambiance Pro .PSD files? #102796
    tomatillodesign
    Member

    Gotcha. Any available grids or wireframes with the widths of the different elements? Thanks again for your help with this.

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 25 total)
1 2 →

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