• 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

nunotmp

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 16 posts - 141 through 156 (of 156 total)
← 1 2 3 … 6 7 8
  • Author
    Posts
  • September 11, 2013 at 3:58 pm in reply to: Best way to add a call to action banner to a page ? #62016
    nunotmp
    Member

    You can do what I said above and just change the hook to something like
    add_action( 'genesis_entry_footer ', 'wpz_call_to_action' );

    This will place the widget at the end of every post.


    Genesis Child Themes – Follow Me

    September 10, 2013 at 10:03 pm in reply to: Best way to add a call to action banner to a page ? #61832
    nunotmp
    Member

    The way I would do this is first create a new sidebar with the function genesis_register_sidebar()then add an action like so

    add_action( 'genesis_before_content', 'wpz_call_to_action' );
    function wpz_call_to_action() {
    if ( is_active_sidebar( 'cta' ) ) {
        genesis_widget_area( 'cta', array(
         'before' => '<div class="cta-wrap">';
         'after'   => '<div>';
    ) )
    }
    }
    

    You can then use a text widget in the new sidebar you created.


    Genesis Child Themes – Follow Me

    September 10, 2013 at 9:53 pm in reply to: Larger header w/ Prose theme? #61829
    nunotmp
    Member

    You can upload it but WordPress will prompt you to crop the header. You can give it a shot and see if it looks right to you. If not, just remove it and have the designer or someone else to re-size it for you.


    Genesis Child Themes – Follow Me

    September 10, 2013 at 9:47 pm in reply to: Education Theme Header #61828
    nunotmp
    Member

    Make sure under Geneis>Theme Settings that you have image logo selected as your header. Right now you have dynamic text.


    Genesis Child Themes – Follow Me

    September 8, 2013 at 10:14 pm in reply to: Only Show Featured Images for Posts with Set Featured Images #61448
    nunotmp
    Member

    Assuming you are using genesis 2.0+ You can first remove it with
    remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );

    Then we register it with like so

    if ( has_post_thumbnail() ) { 
    add_action( 'genesis_entry_content', 'genesis_do_post_image', 8 ); 
    }

    This will call the genesis_do_image() function only if the post has a thumbnail.


    Genesis Child Themes – Follow Me

    September 8, 2013 at 10:07 pm in reply to: Minimum pro 3.0 issue #61446
    nunotmp
    Member

    The top space is caused by the class .site-tagline having a top margin of margin-top: 60px; margin-top: 6rem;. You need to edit your style.css under line 494 and remove the top margin.


    Genesis Child Themes – Follow Me

    September 8, 2013 at 5:23 pm in reply to: Metro Pro – move featured images below post titles #61414
    nunotmp
    Member

    If you are using html5 the hooks have changed. You will need to use
    remove_action( 'genesis_entry_header' , 'genesis_do_post_image', 8 ); and then reapply with a lower lower/higher priority. Something like add_action( 'genesis_entry_header', 'genesis_do_post_image', 5 );

    If you are using xhtml then you will need to do this.

    remove_action( 'genesis_post_content', 'genesis_do_post_image' );
    add_action( 'genesis_before_post_title', 'genesis_do_post_image' );

    Now you can place this in your home.php file or adding a conditional statement in your functions.php file. like so

    if ( is_home() ) {
    // add actions here
    }

    Genesis Child Themes – Follow Me

    September 8, 2013 at 5:12 pm in reply to: Metro Pro – home page widget – featured image sizes #61413
    nunotmp
    Member

    The images sizes should be in the functions.php file. They will be called using the add_image_size(); function. It may look something like this in your functions .php file add_image_size( 'home-top', 700, 400, true );


    Genesis Child Themes – Follow Me

    September 8, 2013 at 5:09 pm in reply to: Customizing Comment Number #61411
    nunotmp
    Member

    What exactly are you trying to do?


    Genesis Child Themes – Follow Me

    August 13, 2013 at 9:07 pm in reply to: Feedback on my site #56227
    nunotmp
    Member

    Your site looks great! The only thing I am not a fan of is the a tags in your footer. Good job.


    Genesis Child Themes – Follow Me

    August 13, 2013 at 9:00 pm in reply to: Remove Primary Side Bar from Home Page of METRO Theme #56226
    nunotmp
    Member

    Try adding this to your functions.php file:

    if ( is_home() ) { remove_action( 'genesis_sidebar', 'genesis_do_sidebar' ); }


    Genesis Child Themes – Follow Me

    July 25, 2013 at 7:57 am in reply to: Move secondary nav to show under slider – Executive theme #52440
    nunotmp
    Member

    If you are unfamiliar with the functions.php file I would advise not to do it. If you were to accidentally leave out something like a semicolon then your site would break. The code should go at the bottom of your functions.php if you would like to try it out and have ftp access.


    Genesis Child Themes – Follow Me

    July 24, 2013 at 10:22 pm in reply to: Move secondary nav to show under slider – Executive theme #52408
    nunotmp
    Member

    I am not sure if you are comfortable using the functions.php file but something like this should work

    
    remove_action( 'genesis_after_header', 'genesis_do_subnav' );
    add_action( 'genesis_before_content', 'genesis_do_subnav' );
    

    Genesis Child Themes – Follow Me

    July 24, 2013 at 7:03 pm in reply to: Full-Width Home Sidebar/Widget #52386
    nunotmp
    Member

    My guess is you are adding the widget genesis_before_content? This places the widget within the #inner div. This div has a width of 900px so to match the nav width you might need to use genesis_after_header this will place the widget area in the same position but outside of the #inner div.


    Genesis Child Themes – Follow Me

    July 24, 2013 at 6:55 pm in reply to: Display Category Title at the Top of Post #52384
    nunotmp
    Member

    You can use hooks. Somthing like this: `
    remove_action( 'genesis_entry_footer', 'genesis_post_meta' );
    add_action('genesis_entry_header', 'genesis_post_meta' )`
    That is using genesis 2.0 but if you are using an earlier version try this`
    remove_action( 'genesis_after_post_content', 'genesis_post_meta' );
    add_action('genesis_before_post_content', 'genesis_post_meta' )
    `


    Genesis Child Themes – Follow Me

    July 24, 2013 at 6:48 pm in reply to: Any feedback would be appreciated #52383
    nunotmp
    Member

    It looks pretty good. The form looks a bit thrown together but a few tweaks should fix that up.


    Genesis Child Themes – Follow Me

  • Author
    Posts
Viewing 16 posts - 141 through 156 (of 156 total)
← 1 2 3 … 6 7 8
« Previous Page

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2025 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