• 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,301 through 1,320 (of 1,344 total)
← 1 2 3 … 65 66 67 68 →
  • Author
    Posts
  • December 24, 2013 at 11:40 am in reply to: Agency Pro – getting the header image to scroll #81085
    Genesis Developer
    Member

    You are welcome.

    Merry XMAS.


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

    December 24, 2013 at 10:52 am in reply to: A slider from another site #81079
    Genesis Developer
    Member

    Then I think that you will hire a developer and make it. You need custom code for this exact slider.


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

    December 24, 2013 at 10:48 am in reply to: Eleven40 Pro: Show featured image – How to #81078
    Genesis Developer
    Member

    Try to add this code in functions.php file

    add_action( 'genesis_entry_content', 'genesis_do_single_post_image', 8 );
    add_action( 'genesis_post_content', 'genesis_do_single_post_image' );
    function genesis_do_single_post_image() {
    
    	if ( is_single() ) {
    		$img = genesis_get_image( array(
    			'format'  => 'html',
    			'size'    => genesis_get_option( 'image_size' ),
    			'context' => 'archive',
    			'attr'    => genesis_parse_attr( 'entry-image' ),
    		) );
    
    		if ( ! empty( $img ) )
    			printf( '<a href="%s" title="%s">%s</a>', get_permalink(), the_title_attribute( 'echo=0' ), $img );
    	}
    
    }
    

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

    December 23, 2013 at 11:59 pm in reply to: Agency Pro – getting the header image to scroll #81025
    Genesis Developer
    Member

    for scrolling logo edit the 861 no line of your style.css file

    replace position: fixed;with position: absolute;


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

    December 23, 2013 at 11:56 pm in reply to: Agency Pro – getting the header image to scroll #81024
    Genesis Developer
    Member

    On mobile the Nav Bar isn’t at the top – how do I make that happen?

    Ans: add this code in your style.css file

    @media only screen and (max-width: 767px){
      .nav-secondary{top: 0}
    }

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

    December 23, 2013 at 11:43 pm in reply to: Post_Info Filter not working in CPT #81022
    Genesis Developer
    Member

    Add this code in your single-species.php file

    add_filter( 'genesis_post_info', 'dailyspecies_post_info_filter' );
    function dailyspecies_post_info_filter($post_info) {
    	$post_info = '[post_date]';
    	return $post_info;
    }

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

    December 23, 2013 at 9:42 pm in reply to: Exclude category from home.php Genesis 2.0 – help? #81012
    Genesis Developer
    Member

    Ah! Please remove my code. It will not work that way.


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

    December 23, 2013 at 9:39 pm in reply to: How do I had links to the next and previous post at then end of my single posts? #81011
    Genesis Developer
    Member

    Please modify the code

    add_action( 'genesis_after_entry', 'genesis_do_post_prev_link_single', 4 );
    function genesis_do_post_prev_link_single(){
      if( is_single()){
         echo '<div style="float: left; display: inline-block;width: 48%;">' . "\n";
         previous_post_link() ;
         echo '</div><div style="float: right; display: inline-block;width: 48%;">'  . "\n";
         next_post_link()  ;
         echo '</div>' . "\n";
       }
    }

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

    December 23, 2013 at 12:42 pm in reply to: How do I had links to the next and previous post at then end of my single posts? #80927
    Genesis Developer
    Member

    @rick4him

    Try this code in functions.php file

    add_action( 'genesis_after_entry', 'genesis_do_post_prev_link_single', 4 );
    function genesis_do_post_prev_link_single(){
      if( is_single()){
         echo '<div style="float: left">' . previous_post_link() .  '</div><div style="float: right">' .next_post_link()  . '</div>';
       }
    }

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

    December 23, 2013 at 12:36 pm in reply to: Exclude category from home.php Genesis 2.0 – help? #80924
    Genesis Developer
    Member

    what is your site URL? Home page is using the grid loop?


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

    December 23, 2013 at 12:15 pm in reply to: Exclude category from home.php Genesis 2.0 – help? #80917
    Genesis Developer
    Member

    try this code in your functions.php file

    add_filter('genesis_grid_loop_args', 'exclude_category_from_home');
    function exclude_category_from_home($args){
       $args['cat'] = '-2'; //Please add your category id
      return $args;
    }

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

    December 23, 2013 at 10:21 am in reply to: How could I insert a banner below the top menu in Metro pro? #80899
    Genesis Developer
    Member

    try this code in functions.php file

    add_action('genesis_before_header', 'add_custom_banner_at top', 35);
    
    function add_custom_banner_at top(){
      //Write here your banner code
    }

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

    December 23, 2013 at 7:50 am in reply to: How to disable social sharing buttons from showing on home page – Outreach theme #80874
    Genesis Developer
    Member

    Also you can use this

    .home .shareaholic-canvas{display: none}

    I think that this one will be best for you.


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

    December 23, 2013 at 7:48 am in reply to: How to disable social sharing buttons from showing on home page – Outreach theme #80873
    Genesis Developer
    Member

    Sorry try this code

    .home .shareaholic-share-buttons, 
    .home .shareaholic-share-buttons-heading{display: none}

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

    December 23, 2013 at 7:22 am in reply to: Balance signup form align input fields #80870
    Genesis Developer
    Member

    welcome

    Please mark it as "RESOLVED"


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

    December 23, 2013 at 7:20 am in reply to: How to disable social sharing buttons from showing on home page – Outreach theme #80869
    Genesis Developer
    Member

    add this code in style.css file

    
    .home .shareaholic-share-buttons-heading{display: none}

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

    December 23, 2013 at 2:45 am in reply to: Balance signup form align input fields #80857
    Genesis Developer
    Member

    Modify your style.css file

    Current code

    .enews #subbox {
    	-moz-box-shadow: inset 0 1px 2px 1px #eee;
    	-webkit-box-shadow: inset 0 1px 2px 1px #eee;
    	background: url(images/email-icon.png) no-repeat 16px 15px #fff;
    	border-bottom: none;
    	border-left: 1px solid #963c3c;
    	border-right: none;
    	border-top: 1px solid #963c3c;
    	box-shadow: inset 0 1px 1px 1px #eee;
    	color: #bbb;
    	font-family: Verdana, Arial, Tahoma, sans-serif;
    	font-size: 9px;
    	padding: 14px 15px 14px 45px;
    	text-transform: uppercase;
    	width: 160px;
    }

    New Code

    .enews #subbox {
    	-moz-box-shadow: inset 0 1px 2px 1px #eee;
    	-webkit-box-shadow: inset 0 1px 2px 1px #eee;
    	background: url(images/email-icon.png) no-repeat 16px 15px #fff;
    	border-bottom: none;
    	border-left: 1px solid #963c3c;
    	border-right: none;
    	border-top: 1px solid #963c3c;
    	box-shadow: inset 0 1px 1px 1px #eee;
    	color: #bbb;
    	font-family: Verdana, Arial, Tahoma, sans-serif;
    	font-size: 9px;
    	padding: 14px 15px 14px 45px;
            margin-left: 25px;
    	text-transform: uppercase;
    	width: 160px;
    }

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

    December 22, 2013 at 10:09 pm in reply to: Widget Title – How to Change Default H Tags? #80849
    Genesis Developer
    Member

    You are Welcome.


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

    December 22, 2013 at 7:07 am in reply to: Beautiful Pro post list customization #80747
    Genesis Developer
    Member

    Ok. Add this code in home.php file. Please keep a backup first.

    remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 );
    remove_action( 'genesis_post_content', 'genesis_do_post_image' );
    
    add_action( 'genesis_entry_content', 'genesis_do_custom_post_image', 8 );
    add_action( 'genesis_post_content', 'genesis_do_custom_post_image' );
    
    function genesis_do_custom_post_image(){
        global $wp_query;
         if ( ! is_singular() && genesis_get_option( 'content_archive_thumbnail' ) ) {
              if($wp_query->current_post <=0){
    		$img = genesis_get_image( array(
    			'format'  => 'html',
    			'size'    => genesis_get_option( 'image_size' ),
    			'context' => 'archive',
    			'attr'    => genesis_parse_attr( 'entry-image' ),
    		) );
               }else{
                   $img = genesis_get_image( array(
    			'format'  => 'html',
    			'size'    => 'thumbnail',
    			'context' => 'archive',
    			'attr'    => genesis_parse_attr( 'entry-image' ),
    		) );
              }
    
    		if ( ! empty( $img ) )
    			printf( '<a href="%s" title="%s">%s</a>', get_permalink(), the_title_attribute( 'echo=0' ), $img );
    	}
    }

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

    December 22, 2013 at 6:30 am in reply to: Beautiful Pro post list customization #80744
    Genesis Developer
    Member

    Is your home page widgetize? There have some widgets like home top, home bottom at Dashboard -> Appearance ->Widgets Section?


    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,301 through 1,320 (of 1,344 total)
← 1 2 3 … 65 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

© 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