• 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 through 20 (of 1,344 total)
1 2 3 … 66 67 68 →
  • Author
    Posts
  • August 16, 2019 at 8:44 am in reply to: Authority Pro – Hide Title on Front Page #493004
    Genesis Developer
    Member
    add_action( 'genesis_entry_header', 'paulc_remove_title', 1 );
    function paulc_remove_title() {
    	if( ! is_front_page() )
    		return;
    
    	remove_action( 'genesis_entry_header', 'genesis_entry_header_markup_open', 5 );
    	remove_action( 'genesis_entry_header', 'genesis_entry_header_markup_close', 15 );
    	remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
    }

    Add this code into the functions.php file. Hope that it will help you.


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

    August 16, 2019 at 8:12 am in reply to: Convert Post Page to 3 Columns Essence Pro #493002
    Genesis Developer
    Member

    Here is the article


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

    August 9, 2019 at 9:35 pm in reply to: How to move widget title before widet-wrap? #492916
    Genesis Developer
    Member

    There have a filter genesis_register_widget_area_defaults . You can alter the default parameters. Write the custom code into your functions.php file as per your need.


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

    August 9, 2019 at 9:20 pm in reply to: change text footer #492914
    Genesis Developer
    Member

    Add this code into your functions.php file

    add_filter( 'genesis_footer_creds_text', 'paulc_footer_creds_text' );
    function paulc_footer_creds_text( $creds ) {
    	return sprintf( '[footer_copyright before="%s"] · %s',
    		__( 'Copyright', 'text-domain' ),
    		__( 'All Rights Reserved', 'text-domain' )
    	);
    }

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

    August 6, 2019 at 7:44 am in reply to: CSS Classes Menu Navigation #492853
    Genesis Developer
    Member

    Next, find the Screen Options tab at the top right of the screen. Click to open the panel, and check the box labelled CSS Classes.

    Credit: Source


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

    August 2, 2019 at 11:50 pm in reply to: Adding custom class to tags #492769
    Genesis Developer
    Member

    Here is the tutorial.


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

    August 2, 2019 at 11:12 pm in reply to: Wellness Theme – Header Full Width with Elementor #492768
    Genesis Developer
    Member

    You will add this CSS

    .site-header > .wrap {
         max-width: 100%;
    }

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

    August 2, 2019 at 9:01 am in reply to: Force hamburger menu on desktop (Monochrome theme) #492746
    Genesis Developer
    Member

    This CSS codes are added inside the @media queries

    .genesis-nav-menu li {
    		float: none;
    	}
    
    	.genesis-responsive-menu .wrap {
    		padding: 0;
    	}
    
    	.genesis-responsive-menu {
    		display: none;
    		position: relative;
    	}
    
    	.site-header > .wrap > .genesis-responsive-menu {
    		transition: none;
    	}
    
    	.genesis-skip-link .skip-link-hidden {
    		display: none;
    		visibility: hidden;
    	}
    
    	.menu-toggle,
    	.sub-menu-toggle {
    		border-width: 0;
    		color: #000;
    		display: block;
    		font-family: Muli, sans-serif;
    		margin: 0 auto;
    		overflow: hidden;
    		text-align: center;
    		visibility: visible;
    		width: auto;
    	}
    
    	.menu-toggle:focus,
    	.menu-toggle:hover,
    	.sub-menu-toggle:focus,
    	.sub-menu-toggle:hover {
    		background: transparent;
    		border-width: 0;
    		box-shadow: none;
    		color: #06c;
    	}
    
    	.js .genesis-nav-menu > .menu-item .sub-menu > .menu-item:first-child,
    	.js .genesis-nav-menu > .menu-item > .sub-menu > .menu-item:last-child,
    	.js .genesis-nav-menu .sub-menu a,
    	.js #genesis-mobile-nav-primary {
    		background-color: #fff;
    		color: #000;
    	}
    
    	#genesis-mobile-nav-primary.activated {
    		border-bottom-color: transparent;
    	}
    
    	#genesis-mobile-nav-primary:focus,
    	#genesis-mobile-nav-primary:hover {
    		color: #06c;
    	}
    
    	.menu-toggle {
    		float: right;
    		font-size: 15px;
    		font-weight: 400;
    		line-height: 21px;
    		padding-left: 0;
    		padding-right: 0;
    		position: relative;
    		z-index: 1000;
    	}
    
    	.menu-toggle::before {
    		font-size: 20px;
    		margin-right: 5px;
    		text-rendering: auto;
    		vertical-align: bottom;
    	}
    
    	.sub-menu-toggle {
    		background: transparent;
    		float: right;
    		font-size: 14px;
    		padding: 10px;
    		position: absolute;
    		right: 0;
    		top: 2px;
    		z-index: 100;
    	}
    
    	.sub-menu-toggle::before {
    		display: inline-block;
    		text-rendering: auto;
    		transform: rotate(0);
    		transition: transform 0.25s ease-in-out;
    	}
    
    	.sub-menu-toggle.activated::before {
    		transform: rotate(180deg);
    	}
    
    	.genesis-responsive-menu .genesis-nav-menu .menu-item {
    		display: block;
    		float: none;
    		position: relative;
    		text-align: left;
    	}
    
    	.genesis-responsive-menu .genesis-nav-menu .menu-item:focus,
    	.genesis-responsive-menu .genesis-nav-menu .menu-item:hover {
    		position: relative;
    	}
    
    	.genesis-responsive-menu .genesis-nav-menu a:focus,
    	.genesis-responsive-menu .genesis-nav-menu a:hover,
    	.genesis-responsive-menu .genesis-nav-menu .sub-menu .menu-item a:focus,
    	.genesis-responsive-menu .genesis-nav-menu .sub-menu .menu-item a:hover,
    	.genesis-responsive-menu.nav-primary .genesis-nav-menu .sub-menu .current-menu-item > a {
    		color: #06c;
    	}
    
    	.genesis-responsive-menu .genesis-nav-menu .menu-item a,
    	.genesis-responsive-menu .toggle-header-search {
    		border: none;
    		margin-bottom: 1px;
    		padding: 15px 20px;
    		width: 100%;
    	}
    
    	.genesis-responsive-menu.nav-primary .genesis-nav-menu .sub-menu a {
    		color: #000;
    	}
    
    	.genesis-nav-menu > .menu-item .sub-menu > .menu-item:first-child {
    		padding-top: 0;
    	}
    
    	.genesis-nav-menu > .menu-item .sub-menu > .menu-item:last-child {
    		padding-bottom: 5px;
    	}
    
    	.genesis-responsive-menu .genesis-nav-menu .sub-menu::after,
    	.genesis-responsive-menu .genesis-nav-menu .sub-menu::before,
    	.genesis-responsive-menu .genesis-nav-menu > .menu-item-has-children > a::after {
    		content: none;
    	}
    
    	.genesis-responsive-menu .genesis-nav-menu .menu-item > a:focus ul.sub-menu,
    	.genesis-responsive-menu .genesis-nav-menu .menu-item > a:focus ul.sub-menu .sub-menu {
    		left: 0;
    		margin-left: 0;
    	}
    
    	.genesis-responsive-menu .genesis-nav-menu .sub-menu {
    		clear: both;
    		display: none;
    		margin: 0;
    		opacity: 1;
    		padding-left: 15px;
    		position: static;
    		width: 100%;
    	}

    You will put them outside of the @media query.


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

    July 29, 2019 at 8:23 pm in reply to: Remove footer from all pages except the home page #492672
    Genesis Developer
    Member

    You can write this code into the functions.php file

    add_action( 'genesis_footer', 'paulc_site_footer', 1 );
    function paulc_site_footer() {
    	if( ! is_front_page() )
    		remove_action( 'genesis_footer', 'genesis_do_footer' );
    }

    Hope this helps


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

    July 23, 2019 at 10:58 pm in reply to: Breaks in Geneisis framework/template outreach pro #492525
    Genesis Developer
    Member

    May be you will hire a professional web developer for debugging the issue. very tough to provide the correct answer about your issue.


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

    July 22, 2019 at 11:10 pm in reply to: Breakthrough Pro: How to remove the hero title while keeping hero image #492493
    Genesis Developer
    Member

    Replace this line

    if ( $title || is_active_sidebar( 'hero-section' ) ) {

    with

    if ( is_active_sidebar( 'hero-section' ) ) {

    Next go to
    1. Appearance->Widgets page
    2. Drag&drop the text/or HTML widget at Hero section sidebar
    3. Save the widget without any content

    Hope that it will work.


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

    July 22, 2019 at 10:37 pm in reply to: Unable to display Manual Post Summaries on Category Archive Pages (Magazine Pro) #492492
    Genesis Developer
    Member

    There have excerpt box below the WP Editor. You can add your manual content here for all posts.

    Next you can add this PHP code into Magazine Pro theme's functions.php file

    add_action( 'genesis_entry_content', 'paulc_do_post_excerpt', 1 );
    
    function paulc_do_post_excerpt() {
    	
    	if( ! is_category() )
    		return;
    
    	//* Removes the default post content action
    	remove_action( 'genesis_entry_content', 'genesis_do_post_content' );
    
    	//* Disply the manual excerpt on category archive pages
    	add_action( 'genesis_entry_content', 'paulc_do_cat_post_content' );
    }
    
    function paulc_do_cat_post_content() {
    	
    	the_excerpt();
    
    }

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

    July 16, 2019 at 11:12 am in reply to: set background image conditionally #492388
    Genesis Developer
    Member

    I am pretty sure that it .siteinner is a wrong CSS classname. You can try this css

    .home .site-inner {
    	
    	background-color: #f5f5f5; 
    	background-image: url(images/bg.png);
    	background-repeat: repeat-x;
    	border-top: 1px solid #ececec;
    	clear: both;
    	
    }

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

    July 15, 2019 at 8:22 am in reply to: set background image conditionally #492368
    Genesis Developer
    Member

    which child theme are you using? Can you share your current code? We shall look it.


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

    July 15, 2019 at 8:15 am in reply to: Full width header image #492367
    Genesis Developer
    Member

    Looks like you already fixed the issue.


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

    July 1, 2019 at 9:46 am in reply to: Decision to select a host #492047
    Genesis Developer
    Member

    WPE/ SiteGround/Kinsta


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

    July 1, 2019 at 9:44 am in reply to: Breakthrough Pro – Display Logo and Site Title #492046
    Genesis Developer
    Member

    try this CSS. You can put the CSS in Customizer -> Additional CSS text box.

    .wp-custom-logo .site-title {
        display: inline-block!important;
        text-indent: 0!important;
        float: left;
        margin-top: 24px;
        margin-left: 20px;
    }
    
    .wp-custom-logo .title-area > a {
        float: left;
        width: auto!important;
    }

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

    June 21, 2019 at 9:51 pm in reply to: Cannot change background of header #491830
    Genesis Developer
    Member

    You can do this two ways:

    1. Login to Dashboard. Click on Appearance -> Customize link and add the CSS into Additional CSS box.
    2. Login to Dashboard and open the theme editor (Appearance -> Theme Editor). Edit the style.css file


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

    June 21, 2019 at 9:46 pm in reply to: Full-width footer widget #491829
    Genesis Developer
    Member

    Try this CSS

    .footer-widgets .footer-widgets-1 {
    	margin-right: 0;
    	width: 100%!important;
    }

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

    April 4, 2017 at 8:12 am in reply to: Random white space above site #204271
    Genesis Developer
    Member

    <section> tag of genesis skip links is creating the issue. It is very strange thing for your site.


    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 through 20 (of 1,344 total)
1 2 3 … 66 67 68 →

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2023 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