• 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

Genesis Developer

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,321 through 1,340 (of 1,344 total)
← 1 2 3 … 66 67 68 →
  • Author
    Posts
  • December 22, 2013 at 1:07 am in reply to: Need Help Adding 4 Columns to Home-Top Section – Executive Pro #80726
    Genesis Developer
    Member

    Please modify your styls.css file.

    .home-middle .widget:nth-of-type(3n+1), .home-top .widget:nth-of-type(3n+1) {
        clear: left;
    }

    WILL BE

    .home-middle .widget:nth-of-type(3n+1) {
        clear: left;
    }

    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 21, 2013 at 10:51 pm in reply to: Widget Title – How to Change Default H Tags? #80698
    Genesis Developer
    Member

    Then you can replace the following code

    //* Register widget areas
    genesis_register_sidebar( array(
    	'id'          => 'home-portfolio',
    	'name'        => __( 'Home - Portfolio','mpp' ),
    	'description' => __( 'This is the portfolio section of the homepage.','mpp' ),
    ) );

    WITH THIS WAY

    //* Register widget areas
    register_sidebar( array(
    	'id'          => 'home-portfolio',
    	'name'        => __( 'Home - Portfolio','mpp' ),
    	'description' => __( 'This is the portfolio section of the homepage.','mpp' ),
           'before_widget' => '<section id="%1$s" class="widget %2$s"><div class="widget-wrap">',
    	'after_widget'  => '</div></section>',
           'before_title' => '<h2 class="widget-title">',
           'after_title' => '</h2>'
    ) );

    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 21, 2013 at 1:47 pm in reply to: How to make blog posts display as 3 column layout #80653
    Genesis Developer
    Member

    Add the following code in functions.php file

    add_filter('genesis_grid_loop_post_class', 'threeColGridClass');
    function threeColGridClass(array $grid_classes){
      global $_genesis_loop_args, $wp_query;
      $new_classes = array();
      $new_classes[] = 'one-third';
      if(($wp_query->current_post + 1)  % 3 == 1){
        $new_classes[] = 'first';
      }
      return $new_classes;
    }

    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 21, 2013 at 11:03 am in reply to: How to remove post from home page #80630
    Genesis Developer
    Member

    If you want exclude the category then use this in functions.php file

    /** Exclude certain category from posts */
    add_action( 'pre_get_posts', 'be_exclude_category_from_home' );
    function be_exclude_category_from_home( $query ) {
    
        if( $query->is_main_query() && $query->is_home() ) {
            $query->set( 'cat', '-156' ); //use your category ID
        }
    }

    If you want exclude the some specific posts then use this in functions.php file

    /** Exclude certain posts from home page*/
    add_action( 'pre_get_posts', 'be_exclude_post_from_home' );
    function be_exclude_post_from_home( $query ) {
    
        if( $query->is_main_query() && $query->is_home() ) {
            $query->set( 'p', '-26' ); //use your post ID
        }
    }

    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 21, 2013 at 10:59 am in reply to: How to remove post from home page #80629
    Genesis Developer
    Member

    are you wanting to exclude some categories posts from home page?


    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 21, 2013 at 3:24 am in reply to: Widget Title – How to Change Default H Tags? #80578
    Genesis Developer
    Member

    Right now I have not agency pro theme. For that reason I asking the code. But you can pass this 'before_title' => '<h2 class="widget-title">' and 'after_title' => '</h2>' in genesis_register_sidebar() function


    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 21, 2013 at 2:47 am in reply to: Below content widget appears above content #80575
    Genesis Developer
    Member

    @braddalton

    Yes. if he use the HTML5 markup then your code will work on his child theme. But he is using the XHTML and XHTML is not supporting the 'genesis_enrty_footer' hook. It is for HTML5 only.


    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 20, 2013 at 11:01 pm in reply to: Below content widget appears above content #80566
    Genesis Developer
    Member

    Then this can be work

    add_action( 'genesis_after_post_content', ''below_hhdata_widget'' );
    function below_hhdata_widget(){
      if(( 'hh-data' == get_post_type() )  && is_single() ) {
     
        genesis_widget_area( 'below-hhdata', array(
    		'before' => '<div class="below-hhdata widget-area">',
    		'after'  => '</div>',
        ) );
     
      }  
    }

    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 20, 2013 at 10:53 pm in reply to: Widget Title – How to Change Default H Tags? #80565
    Genesis Developer
    Member

    Ok. Please remove my code from functions.php. It was for primary sidebar.

    some how you can send me the code of functions.php file? I'll take a look.


    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 20, 2013 at 1:08 pm in reply to: Widget Title – How to Change Default H Tags? #80487
    Genesis Developer
    Member

    Try this code in functions.php file of your child theme

    remove_action( 'genesis_sidebar', 'genesis_do_sidebar' );
    add_action( 'genesis_sidebar', 'genesis_do_custom_sidebar' );
    
    function genesis_do_custom_sidebar() {
    
    	if ( ! dynamic_sidebar( 'sidebar' ) && current_user_can( 'edit_theme_options' )  ) {
    		genesis_custom_widget_area_content( __( 'Primary Sidebar Widget Area', 'genesis' ) );
    	}
    
    }
    
    function genesis_custom_widget_area_content( $name ) {
    
    	echo genesis_html5() ? '<section class="widget widget_text">' : '<div class="widget widget_text">';
    	echo '<div class="widget-wrap">';
    	
    		printf( '<h2 class="widgettitle">%s</h2>', esc_html( $name ) );
    		echo '<div class="textwidget"><p>';
    		
    			printf( __( 'This is the %s. You can add content to this area by visiting your <a href="%s">Widgets Panel</a> and adding new widgets to this area.', 'genesis' ), $name, admin_url( 'widgets.php' ) );
    		
    		echo '</p></div>';
    	
    	echo '</div>';
    	echo genesis_html5() ? '</section>' : '</div>';
    
    }

    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 20, 2013 at 12:50 pm in reply to: Below content widget appears above content #80485
    Genesis Developer
    Member

    are you using HTML5 markup? in your functions.php file have this code 'add_theme_support( 'html5' );' ?


    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 13, 2013 at 3:24 am in reply to: WordPress is redirecting to wp-admin/install.php #78763
    Genesis Developer
    Member

    Connect to FTP and check once that there have wp-config.php file. Other wise you will create it manually


    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 12, 2013 at 10:17 pm in reply to: WordPress 3.8 compatibility #78720
    Genesis Developer
    Member

    Yes. Right there have no Issue with WordPress 3.8 and Genesis 2.0.1


    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 12, 2013 at 1:33 pm in reply to: Genesis Responsive Slider #78582
    Genesis Developer
    Member

    Add this in style.css file

    .content .genesis_responsive_slider .slide-excerpt{display: none!important;}


    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 12, 2013 at 1:30 pm in reply to: LifeStyle Theme Header #78581
    Genesis Developer
    Member
    /** Add support for custom header */
    add_theme_support( 'genesis-custom-header', array( 'width' => 'YOUR NEW LOGO WIDTH', 'height' => 'YOUR NEW LOGO HEIGHt' ) );

    Update the above code in your functions.php file


    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 12, 2013 at 8:50 am in reply to: What size 's background image of Metro Pro ? #78549
    Genesis Developer
    Member

    it is using the backstretch JQuery lib for background image. You can upload any image and that library will automatically re-size the image with your browser size. See this demo http://srobbin.com/jquery-plugins/backstretch/


    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 12, 2013 at 8:04 am in reply to: What size 's background image of Metro Pro ? #78543
    Genesis Developer
    Member

    Size of background means? Are you wanting to add a bg in body?


    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 12, 2013 at 5:21 am in reply to: Logo & Nav in Magazine Pro #78529
    Genesis Developer
    Member

    @oxbx2708

    Update the following code in your functions.php file

    /** Add support for custom header */
    add_theme_support( 'genesis-custom-header', array( 'width' => 'YOUR NEW LOGO WIDTH', 'height' => 'YOUR NEW LOGO HEIGHt' ) );

    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 12, 2013 at 1:18 am in reply to: How to make static Header #78520
    Genesis Developer
    Member

    Add the code in style.css file

    @media only screen and (max-width: 767px){
        .site-inner {padding-top: 168px;    padding-top: 16.8rem;}
    }

    Mobile menu see this resource http://bradpotter.com/responsive-mobile-navigation-menu-for-the-genesis-theme-framework/ and http://blackhillswebworks.com/2013/08/16/how-to-add-a-mobile-responsive-menu-to-your-genesis-wordpress-website/#mobile-footer-nav-menu


    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

    December 12, 2013 at 1:04 am in reply to: Has anybody tried using Genesis eNews Extended with MailChimp groups? #78518
    Genesis Developer
    Member

    You can try this plugin MailChimp List Subscribe Form


    Download Genesis Featured Posts Combo Widget | Simple Grid Layouts Plugin for Posts, CPTs and terms
    You can request new tips/help.

  • Author
    Posts
Viewing 20 posts - 1,321 through 1,340 (of 1,344 total)
← 1 2 3 … 66 67 68 →
« Previous Page

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