• 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 20 posts - 1 through 20 (of 156 total)
1 2 3 … 6 7 8 →
  • Author
    Posts
  • November 19, 2014 at 4:16 pm in reply to: Featured Posts Widget – Adding Comment link to footer #132218
    nunotmp
    Member

    Is the comment count now showing at the bottom?


    Genesis Child Themes – Follow Me

    November 19, 2014 at 3:34 pm in reply to: Adding Extra Sidebars #132211
    nunotmp
    Member

    Sorry about that. On the line that says 'name' => 'Sidebar Secondary') there is a parenthesis. Removed below

    
    genesis_register_sidebar( array(
    	'id'          => 'sidebar-secondary',
    	'name'        =>  'Sidebar Secondary',
    	'description' =>  'This is the description.',
    ) );
    

    Genesis Child Themes – Follow Me

    November 19, 2014 at 3:30 pm in reply to: Featured Posts Widget – Adding Comment link to footer #132206
    nunotmp
    Member

    Sure you can. To do this you will have to modify two hooks.

    
    add_filter( 'genesis_post_info', 'wpz_post_info' );
    function wpz_post_info( $info ) {
    	$info = '[post_date] by [post_author_posts_link]  [post_edit]';
    	return $info;
    }
     
    add_filter( 'genesis_post_meta', 'wpz_post_meta' );
    function wpz_post_meta($meta) {
       $meta = '[post_categories] [post_tags] [post_comments]';
       return $meta;
    }
    

    Here is a gist.

    You first need to rebuild each filter and then you edit it the way you like. In the gist I moved [post_comments] to the post meta.


    Genesis Child Themes – Follow Me

    November 19, 2014 at 3:05 pm in reply to: Changing Post Title Size on Post Pages and Home Page #132197
    nunotmp
    Member

    Hello Eric,

    Genesis uses the class entry-title on the post titles. You just need to write a more specific selector like so

    
    h1.entry-title{} // Genesis uses h1 tags for single post/pages
    h2.entry-title{} // Genesis uses h2 tags for post within archive pages
    

    Genesis Child Themes – Follow Me

    November 19, 2014 at 3:01 pm in reply to: Adding Extra Sidebars #132196
    nunotmp
    Member

    The code you created above is not for a sidebar this is a genesis function to output proper HTML for HTML5 sites. You need to use this

    
    genesis_register_sidebar( array(
    	'id'          => 'sidebar-id',
    	'name'        =>  'Sidebar Name'),
    	'description' =>  'This is the description.',
    ) );
    

    Paste this into your functions.php file and edit it to fit your needs.


    Genesis Child Themes – Follow Me

    November 19, 2014 at 2:12 pm in reply to: Optin area at the top of page on Eleven 40 theme possible? #132179
    nunotmp
    Member

    First you have to add the widget with this.

    
    genesis_register_sidebar( array(
    	'id'          => 'opt-in',
    	'name'        => 'Opt in',
    	'description' => 'This is the Opt in widget area.',
    ) );
    

    You then need to create a function to house the widget area to display on the front it. Something like this will work.

    
    function opt_in_area() {
    	genesis_widget_area( 'opt-in', array(
    		'before' => '<section class="opt-in-area"><div class="wrap">',
    		'after'  => '</div></section>',
    	) );
    }
    

    Once that is in place you just need to hook it to where you want it to display. If you want a full width area then hook it to genesis_after_header so this will work.
    add_action( 'genesis_after_header', 'opt_in_area' );

    You would then have to use widgets or HTML code in a text widget to markup and you can add styling to the area by targeting

    .opt-in-area{  
    //css goes here
    }

    Genesis Child Themes – Follow Me

    November 19, 2014 at 2:03 pm in reply to: Modern Portfolio Pro – Images showing pixelated #132175
    nunotmp
    Member

    Thank you. I took a look and the problem is the on allwritesource.com the theme is grabbing the 150x150 thumbnails and stretching then up to 250px. This stretch is causing the pixelation issue. I am unfamiliar with the theme but My guess would be to double check your setting and make sure you are not calling for the 150x150 thumbnail but instead a larger resolution image.


    Genesis Child Themes – Follow Me

    November 19, 2014 at 11:35 am in reply to: Grab Facebook posts and display on WP #132158
    nunotmp
    Member

    You can use this Facebook social plugin Like Box Plugin you can configure to your liking on that page and embed the code into a text widget in your sidebar.


    Genesis Child Themes – Follow Me

    November 19, 2014 at 11:28 am in reply to: Modern Portfolio Pro – Images showing pixelated #132157
    nunotmp
    Member

    Hello Carolej,

    Could you link to your site please ?


    Genesis Child Themes – Follow Me

    November 19, 2014 at 11:22 am in reply to: Optin area at the top of page on Eleven 40 theme possible? #132156
    nunotmp
    Member

    Adding an area below the header is not to difficult but having the the area display like the examples could take quite a bit of CSS. Would you like for me show you how to add the widget area?


    Genesis Child Themes – Follow Me

    November 19, 2014 at 11:17 am in reply to: Full Width Teasers Eleven40 #132154
    nunotmp
    Member

    The theme is built this way with no options to remove it. You can however edit the home.php file. All you have to do is comment out out the actions like so.

    
    // remove_action( 'genesis_loop', 'genesis_do_loop' );
    // add_action( 'genesis_loop', 'eleven40_grid_loop_helper' );
    

    This will remove the grid and display all post that same.


    Genesis Child Themes – Follow Me

    November 19, 2014 at 11:12 am in reply to: How to setup and place a search bar in my sidebar #132151
    nunotmp
    Member

    WordPress comes with a search form widget so you can just drag it over to your sidebar.

    http://awesomescreenshot.com/08f3vscme1


    Genesis Child Themes – Follow Me

    November 16, 2014 at 2:55 pm in reply to: How to add Adsense between tags and comments? #131771
    nunotmp
    Member

    You are welcome. Glad to help.


    Genesis Child Themes – Follow Me

    November 15, 2014 at 6:20 pm in reply to: Markup Breadcrumbs with Data Vocabulary Microdata #131693
    nunotmp
    Member

    I did some digging and create a blog post.

    http://wpzombies.com/adding-microdata-to-genesis-breadcrumbs/


    Genesis Child Themes – Follow Me

    November 15, 2014 at 5:18 pm in reply to: show site description in header as a tagline #131690
    nunotmp
    Member

    Yes. wpzis just my personal prefix.


    Genesis Child Themes – Follow Me

    November 15, 2014 at 3:34 pm in reply to: news pro font #131664
    nunotmp
    Member

    The main font is controlled by the body. You can find it on line 147 of your style.css file.


    Genesis Child Themes – Follow Me

    November 15, 2014 at 3:18 pm in reply to: Exclude Single Post Featured Image From Certain Categories #131660
    nunotmp
    Member

    You need to use the conditional in_category() so this should work.

    
    function single_post_featured_image() {
    	
    	if ( ! is_singular( 'post' )  ||  in_category( 'photos' ) ) 
    		return;
    	
    	$img = genesis_get_image( array( 'format' => 'html', 'size' => genesis_get_option( 'image_size' ), 'attr' => array( 'class' => 'post-image' ) ) );
    	printf( $img ); 
    	
    }
    

    Genesis Child Themes – Follow Me

    November 15, 2014 at 2:55 pm in reply to: show site description in header as a tagline #131652
    nunotmp
    Member

    Hello Lise,

    Something like this should work.

    
    add_action( 'genesis_header', 'wpz_site_description' );
    function wpz_site_description() {
    	$tagline = sprintf( '<p class="text-center">%s</p>', get_bloginfo( 'description' ) );
    	echo $tagline;
    }
    

    I use the class text-center which is a personal class that simply uses text-align: center;. You can add the css to your stylesheet and it will work.

    
    .text-center {
    text-align: center;
    }
    

    Genesis Child Themes – Follow Me

    November 15, 2014 at 2:44 pm in reply to: Stack widgets in Header Right #131649
    nunotmp
    Member

    Why not use a single text widget? If you are just using plan html in the widget you can use a <br> tag and place one on the other.

    I see you are using <div>s with inline styling which feels a bit cluttered. Just a suggestion but maybe you should use and unordered list? Using the code below will do the same thing. All you have to do is add the css ul.social-header li { display: inline }.

    Just a suggestion.

    
    <ul class="social-header">
    	<li><a href="mailto:[email protected]"><img src="/wp-content/uploads/2014/11/email-chia.png" alt="Emailr" height="36" width="36"></a></li>
    	<li><a href="https://www.facebook.com/ChiaUK" target="_blank"><img src="/wp-content/uploads/2014/11/facebook-chia.png" alt="Facebook" height="36" width="36"></a></li>
    	<li><a href="https://twitter.com/chiauk_com" target="_blank"><img src="/wp-content/uploads/2014/11/tweet-chia.png" alt="Twitter" height="36" width="36"></a></li>
    	<li><a href="http://www.pinterest.com/chiauk/" target="_blank"><img src="/wp-content/uploads/2014/11/pin-chia.png" alt="Pinterest" height="36" width="36"></a></li>
    	<li><a href="http://chiauk.com/shop/" target="_blank"><img src="/wp-content/uploads/2014/11/shop-icon.png" alt="Shop" height="46" width="46"></a></li>
    	<li><a href="http://chiauk.com/cart/" target="_blank"><img src="/wp-content/uploads/2014/11/cart-icon.png" alt="Cart" height="46" width="46"></a></li>
    </ul>
    

    Genesis Child Themes – Follow Me

    November 15, 2014 at 3:01 am in reply to: Minimum pro slider #131596
    nunotmp
    Member

    I have used soliloquy for the last year or so. Easy to use and light weight.


    Genesis Child Themes – Follow Me

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 156 total)
1 2 3 … 6 7 8 →

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