• 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

Sridhar Katakam

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 1,221 total)
1 2 3 … 60 61 62 →
  • Author
    Posts
  • April 15, 2020 at 7:10 pm in reply to: How to delete the page header on one page In Genesis Sample theme #497986
    Sridhar Katakam
    Participant

    Good point.


    Genesis Tutorials | Follow me on Twitter

    April 15, 2020 at 6:34 pm in reply to: How to delete the page header on one page In Genesis Sample theme #497984
    Sridhar Katakam
    Participant

    Where possible, it is recommended to make the code not be output/printed on the page rather than using the display CSS property.

    Add this in child theme's functions.php:

    add_action( 'genesis_before_header', 'custom_remove_site_header_homepage' );
    /**
     * Remove site header on the homepage.
     */
    function custom_remove_site_header_homepage() {
    	if ( is_front_page() ) {
    		remove_action( 'genesis_header', 'genesis_header_markup_open', 5 );
    		remove_action( 'genesis_header', 'genesis_do_header' );
    		remove_action( 'genesis_header', 'genesis_header_markup_close', 15 );
    		remove_action( 'genesis_header', 'genesis_do_nav', 12 );
    	}
    }

    Genesis Tutorials | Follow me on Twitter

    April 14, 2020 at 12:09 am in reply to: Magazine pro homepage and post page design #497943
    Sridhar Katakam
    Participant

    1. Edit the Page that is set your site's homepage at Settings > Reading and set it up using Gutenberg blocks.

    2. Can you provide the URL of your posts page?


    Genesis Tutorials | Follow me on Twitter

    April 13, 2020 at 11:35 pm in reply to: Manual Excerpts not working for me in Digital Pro #497942
    Sridhar Katakam
    Participant

    Looks like you managed it?


    Genesis Tutorials | Follow me on Twitter

    April 13, 2020 at 11:33 pm in reply to: Homepage on News Pro #497941
    Sridhar Katakam
    Participant

    1. In the theme directory delete front-page.php or rename it to something like front-page-notusing.php.

    2. Set your desired static Page as the homepage at Settings > Reading.


    Genesis Tutorials | Follow me on Twitter

    April 13, 2020 at 11:15 pm in reply to: Altitude Pro – Move Sidebar on Mobile #497940
    Sridhar Katakam
    Participant

    Sure.

    Add the following CSS:

    @media only screen and (max-width: 1023px) {
    	.tax-product_cat .content-sidebar-wrap {
    		display: flex;
    		flex-direction: column-reverse;
    	}
    }

    Genesis Tutorials | Follow me on Twitter

    April 13, 2020 at 6:53 pm in reply to: Navigation Pro CSS code – help please. #497936
    Sridhar Katakam
    Participant

    You could simply change

    .site-inner {
        background-color: #fff;
    }

    to

    .home .site-inner {
        background-color: #fff;
    }

    so it only affects the homepage and not the inner pages.


    Genesis Tutorials | Follow me on Twitter

    April 13, 2020 at 5:45 pm in reply to: How to delete the page header on one page In Genesis Sample theme #497935
    Sridhar Katakam
    Participant

    Do you want to completely remove the site header on that specific Page or want to replace what appears inside it i.e., the logo + Header Right widget area with a slider?


    Genesis Tutorials | Follow me on Twitter

    April 13, 2020 at 5:42 pm in reply to: Responsive featured image single posts Monochrome #497934
    Sridhar Katakam
    Participant

    Here's a premium tutorial I wrote on this topic:

    https://sridharkatakam.com/featured-image-header-pages-posts-entry-header-overlay-monochrome-pro/


    Genesis Tutorials | Follow me on Twitter

    January 16, 2020 at 4:35 pm in reply to: Theme changes and content transfer #495979
    Sridhar Katakam
    Participant

    When you switch themes, the existing content (Pages, Posts etc.) will remain.

    Still, it is recommended to take a full backup and database backup before switching just in case..


    Genesis Tutorials | Follow me on Twitter

    January 13, 2020 at 6:39 pm in reply to: Remove / Override Inline Styles Authority Pro #495934
    Sridhar Katakam
    Participant

    You would need to edit Authority Pro's style.css file.

    Ex.:

    .ab-block-post-grid a.ab-block-post-grid-more-link:hover {
    	color: #333;
    }

    Genesis Tutorials | Follow me on Twitter

    January 13, 2020 at 6:37 pm in reply to: Remove / Override Inline Styles Authority Pro #495933
    Sridhar Katakam
    Participant

    You would need to edit the Authority Pro's style.css file.

    Ex.:

    .ab-block-post-grid a.ab-block-post-grid-more-link:hover {
    	color: #333;
    }

    Genesis Tutorials | Follow me on Twitter

    January 13, 2020 at 6:24 pm in reply to: Divine Theme – Links not displaying in classic editor #495931
    Sridhar Katakam
    Participant

    We can disable the theme's WP editor CSS by commenting out or deleting

    add_editor_style( '/lib/gutenberg/style-editor.css' );

    in /wp-content/themes/divine-theme/lib/gutenberg/init.php.


    Genesis Tutorials | Follow me on Twitter

    January 12, 2020 at 3:58 pm in reply to: Essence pro – change WooCommerce colors #495917
    Sridhar Katakam
    Participant

    There are 14 occurrences of #a86500 (brown color) in /wp-content/themes/essence-pro/lib/woocommerce/essence-woocommerce.css.

    Replace them with your desired color code.


    Genesis Tutorials | Follow me on Twitter

    January 12, 2020 at 3:55 pm in reply to: Video Widget #495916
    Sridhar Katakam
    Participant

    Self-hosted videos or from YouTube?


    Genesis Tutorials | Follow me on Twitter

    January 12, 2020 at 3:54 pm in reply to: Remove H1 Tags from site title #495915
    Sridhar Katakam
    Participant

    You can use the code snippet on https://www.billerickson.net/genesis-h1-front-page/. Just replace h1 with div.


    Genesis Tutorials | Follow me on Twitter

    January 12, 2020 at 3:37 pm in reply to: Help with photo portfolio in Genesis Theme #495914
    Sridhar Katakam
    Participant

    Can be done using Envira with their Albums Addon.

    https://enviragallery.com/addons/albums-addon/


    Genesis Tutorials | Follow me on Twitter

    January 12, 2020 at 3:31 pm in reply to: Monochrome Pro – header #495913
    Sridhar Katakam
    Participant

    Add this CSS:

    .title-area,
    .nav-primary {
    	float: none;
    }
    
    .nav-primary {
    	text-align: center;
    }
    
    @media only screen and (max-width: 1023px) {
    
    	.menu-toggle {
    		float: none;
    	}
    
    }

    Genesis Tutorials | Follow me on Twitter

    January 12, 2020 at 3:26 pm in reply to: Monochrome Pro – portfolio #495912
    Sridhar Katakam
    Participant

    Are you looking to add a filterable portfolio?


    Genesis Tutorials | Follow me on Twitter

    December 29, 2018 at 4:22 pm in reply to: Adding Search Form to Magazine Pro Header #225310
    Sridhar Katakam
    Participant

    Can you provide the URL of your site?


    Genesis Tutorials | Follow me on Twitter

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 1,221 total)
1 2 3 … 60 61 62 →

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