• 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 - 41 through 60 (of 1,344 total)
← 1 2 3 4 … 66 67 68 →
  • Author
    Posts
  • September 15, 2016 at 10:18 am in reply to: Pagination issue with a custom category template #193204
    Genesis Developer
    Member

    Yes. It is not working. Sorry for it.


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

    September 15, 2016 at 9:59 am in reply to: Pagination issue with a custom category template #193201
    Genesis Developer
    Member

    ..


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

    September 14, 2016 at 9:36 pm in reply to: Pagination issue with a custom category template #193177
    Genesis Developer
    Member

    Here is the updated code http://pastebin.com/rh6j6JRF.

    You used 'cat' => 'category_name',. I am not sure that it will work correctly. Parameter "cat" is accepting the category ID not cat name or cat slug


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

    September 14, 2016 at 9:27 pm in reply to: Remove Primary Navigation from Specific Page #193176
    Genesis Developer
    Member

    Yes


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

    September 13, 2016 at 7:21 am in reply to: Modern Portfolio Pro theme site header logo #193075
    Genesis Developer
    Member

    Replace your existing CSS with this once

    .site-title a::before {
        background: url("http://www.is-there-a-god.info/blog/wp-content/uploads/2016/01/lighthouse-logo.png") no-repeat scroll 0 0;
        content: "";
        display: inline-block;
        height: 50px;
        margin-right: 12px;
        position: relative;
        top: 11px;
        width: 50px;
    }

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

    September 11, 2016 at 8:15 pm in reply to: News Pro Theme Logo Position #192996
    Genesis Developer
    Member

    If your header right widget area is empty, then logo will stick to center. It is the default behavior in Genesis.


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

    September 5, 2016 at 1:07 am in reply to: Help Changing Header/Nav Height on Portfolio Pro #192604
    Genesis Developer
    Member

    Replace

    .site-header {
        height: 160px;
    }

    WITH

    .site-header {
        height: 83px;
    }

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

    September 4, 2016 at 3:03 am in reply to: Filterable Portfolio on Maker Pro Theme #192559
    Genesis Developer
    Member

    You can try this premium plugin http://genesisdeveloper.me/simple-grid-layouts


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

    September 1, 2016 at 10:23 am in reply to: Infinite Scroll #192473
    Genesis Developer
    Member

    Here is the premium plugin for any Genesis Child themes.


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

    August 31, 2016 at 10:57 pm in reply to: Adding an image and text to a Blog Page Template #192448
    Genesis Developer
    Member

    Add this code in your functions.php file

    add_action( 'genesis_loop', 'genesis_standard_loop', 5 );


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

    August 28, 2016 at 11:06 pm in reply to: Bugs on Category and Author's Pages #192203
    Genesis Developer
    Member

    Or You will change the hook or priority for archive description box and move it above the site inner div.


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

    August 28, 2016 at 11:00 pm in reply to: Bugs on Category and Author's Pages #192202
    Genesis Developer
    Member

    Ok.

    Put the blog items inside a div wrapper. Right now there have no wrapper for blog items and this reason archive box is hiding by first 3 posts.


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

    August 28, 2016 at 8:12 pm in reply to: Bugs on Category and Author's Pages #192197
    Genesis Developer
    Member

    Are your plugin compatible with Genesis? Are you checked it? If plugin is loading the completely custom template file, then Genesis hooks for intro text and description will not work. Also others Genesis hooks will not work.


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

    August 27, 2016 at 10:17 pm in reply to: Full Header on the Daily Dish theme #192149
    Genesis Developer
    Member

    Here is the premium tuts for it.


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

    August 27, 2016 at 8:50 am in reply to: Agency Pro Theme Logo #192132
    Genesis Developer
    Member

    Login to dashboard and navigate to Appearance -> Customize page. Now upload the Header Image and logo will appear on your site.


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

    August 25, 2016 at 9:24 am in reply to: Removing the hyperlink from the site-title #192033
    Genesis Developer
    Member

    In Genesis site-title or tagline is showing by "genesis_seo_site_title" function which is locating in lib/structure/header.php file. It have a filter "genesis_seo_title". Using this filter you can alter the HTML markup for site title. I added following script into my child theme's functions.php file:

    add_filter( 'genesis_seo_title', 'gd_remove_hyperlink_site_title', 10, 3 );
    function gd_remove_hyperlink_site_title( $title, $inside, $wrap ) {
      
      if( ! get_header_image() )
        $title = preg_replace( '/<\/?a[^>]*>/', '', $title );
        
      return $title;
      
    }

    Removing the anchor tag if you are not using the header image option. Used PHP's preg_replace function and removed the hyperlink HTML tag from site title. Lastly I am returning the modified site-title HTML markup for echo.


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

    August 23, 2016 at 9:16 am in reply to: What is the best way to customize functions.php & style.css? #191899
    Genesis Developer
    Member

    Have another good plugin https://wordpress.org/plugins/genesis-style-trump/ for stylesheet only,


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

    August 23, 2016 at 9:15 am in reply to: What is the best way to customize functions.php & style.css? #191898
    Genesis Developer
    Member

    Use wpclips.net or custom plugin.


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

    August 22, 2016 at 10:59 pm in reply to: Wellness Pro full size header logo #191847
    Genesis Developer
    Member

    Here is the pro tuts about thefull width header logo.


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

    August 21, 2016 at 11:30 pm in reply to: Sticky Menu In Genesis Sample Theme #191747
    Genesis Developer
    Member

    See this tutorial.


    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 - 41 through 60 (of 1,344 total)
← 1 2 3 4 … 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