• 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

Brad Dalton

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 - 21 through 40 (of 15,342 total)
← 1 2 3 … 766 767 768 →
  • Author
    Posts
  • February 15, 2023 at 8:23 am in reply to: Eleven40 Child Theme #506783
    Brad Dalton
    Participant

    Try activating the 2022 theme and see if that fixes the problem once you update wordpress.


    Tutorials for StudioPress Themes.

    February 15, 2023 at 12:45 am in reply to: Eleven40 Child Theme #506771
    Brad Dalton
    Participant

    Whats the error message?


    Tutorials for StudioPress Themes.

    February 13, 2023 at 1:49 am in reply to: Removing the number of comments shown at top of post #506756
    Brad Dalton
    Participant

    Check the shortcode parameters for post_comments. https://studiopress.github.io/genesis/basics/genesis-shortcodes/

    If it can't be done using the shortcode, you may need to modify the PHP using a filter hook or possibly use CSS to hide the count.


    Tutorials for StudioPress Themes.

    February 11, 2023 at 7:13 am in reply to: How to remove date from “Featured” on home page? #506750
    Brad Dalton
    Participant

    There's a function for this on line 65 in functions.php which you can remove.


    Tutorials for StudioPress Themes.

    February 11, 2023 at 7:08 am in reply to: Essence Pro: How to setup URL/site structure & edit form field spacing #506749
    Brad Dalton
    Participant

    Go to Settings > Permalinks and change the structure.


    Tutorials for StudioPress Themes.

    February 5, 2023 at 4:41 am in reply to: Customizing comments #506698
    Brad Dalton
    Participant

    There are many filter hooks you can use to modify the comment form in Genesis child themes.


    Tutorials for StudioPress Themes.

    January 18, 2023 at 11:15 pm in reply to: Error on Lifestyle Pro site – how to fix and can I no longer use this theme #506598
    Brad Dalton
    Participant

    What version are you running?

    Looks like the error may relate to custom code you have added to your functions file not default child theme code.


    Tutorials for StudioPress Themes.

    January 13, 2023 at 9:50 am in reply to: :first-of-type / :last-of-type – not isolating individual element #506571
    Brad Dalton
    Participant

    Here's 3 ways to use pseudo-classes to style the 1st nav menu item in Genesis child themes.


    Tutorials for StudioPress Themes.

    January 5, 2023 at 8:29 am in reply to: How to set global site background and text colors in Genesis Framework #506515
    Brad Dalton
    Participant

    I think you might have the wrong selector class. Test it in your browser first but this might help. https://wpsites.net/genesis-tutorials/changing-the-primary-navigation-colors-in-studiopress-themes/


    Tutorials for StudioPress Themes.

    January 4, 2023 at 10:23 pm in reply to: How to set global site background and text colors in Genesis Framework #506510
    Brad Dalton
    Participant

    Remove #header.


    Tutorials for StudioPress Themes.

    January 4, 2023 at 4:43 am in reply to: Remove Banner but keep Featured Image #506505
    Brad Dalton
    Participant

    Which theme are you using?


    Tutorials for StudioPress Themes.

    January 4, 2023 at 4:40 am in reply to: The parent theme could not be found. You will need to install the parent theme, #506503
    Brad Dalton
    Participant

    Make sure genesis is installed https://www.studiopress.com/get-genesis/


    Tutorials for StudioPress Themes.

    December 31, 2022 at 2:55 am in reply to: Move homepage image above the text on the mobile version of the site? #506474
    Brad Dalton
    Participant

    You can use CSS with media queries to reposition the image before the title when mobile responsive.

    @media only screen and (max-width: 860px) {
    
     /* Your CSS */
    
    }
    

    You will need to write the CSS which requires some work at your end.


    Tutorials for StudioPress Themes.

    December 24, 2022 at 1:03 am in reply to: Landing Page Template using Infinity Pro #506428
    Brad Dalton
    Participant

    I checked the theme folder and there's a template named Landing

    Template Name: Landing

    You can select the Landing page template using the Template link on the Edit Page screen when using Gutenberg. I did test this right now.


    Tutorials for StudioPress Themes.

    December 22, 2022 at 3:07 am in reply to: Header and site title questions. #506409
    Brad Dalton
    Participant

    The filter for the post title is different than the filter for the site title.

    Here's an example however please note, there's other filter hooks for the post title https://gist.github.com/Lego2012/4624f25e7bc0f1f69ec060f5facc61cb

    In genesis > lib > structure > post.php, you'll find this code

    add_action( 'genesis_entry_header', 'genesis_do_post_title' );
    /**
     * Echo the title of a post.
     *
     * The genesis_post_title_text filter is applied on the text of the title, while the genesis_post_title_output
     * filter is applied on the echoed markup.
     *
     * @since 3.1.0 Suppress output if “hide title” checkbox is ticked.
     * @since 1.1.0
     *
     * @return void Return early if the filtered trimmed title is an empty string.
     */
    function genesis_do_post_title() {
    
    	if ( ! is_home() && genesis_entry_header_hidden_on_current_page() ) {
    		return;
    	}
    
    	$title = apply_filters( 'genesis_post_title_text', get_the_title() );
    
    	if ( '' === trim( $title ) ) {
    		return;
    	}
    
    	// Link it, if necessary.
    	if ( ! is_singular() && apply_filters( 'genesis_link_post_title', true ) ) {
    		$title = genesis_markup(
    			[
    				'open'    => '',
    				'close'   => '',
    				'content' => $title,
    				'context' => 'entry-title-link',
    				'echo'    => false,
    			]
    		);
    	}
    
    	// Wrap in H1 on singular pages.
    	$wrap = is_singular() ? 'h1' : 'h2';
    
    	// Also, if HTML5 with semantic headings, wrap in H1.
    	$wrap = genesis_get_seo_option( 'semantic_headings' ) ? 'h1' : $wrap;
    
    	// Wrap in H2 on static homepages if Primary Title H1 is set to title or description.
    	if (
    		is_front_page()
    		&& ! is_home()
    		&& genesis_seo_active()
    		&& 'neither' !== genesis_get_seo_option( 'home_h1_on' )
    	) {
    		$wrap = 'h2';
    	}
    
    	/**
    	 * Entry title wrapping element.
    	 *
    	 * The wrapping element for the entry title.
    	 *
    	 * @since 2.2.3
    	 *
    	 * @param string $wrap The wrapping element (h1, h2, p, etc.).
    	 */
    	$wrap = apply_filters( 'genesis_entry_title_wrap', $wrap );
    
    	// Build the output.
    	$output = genesis_markup(
    		[
    			'open'    => "<{$wrap} %s>",
    			'close'   => "</{$wrap}>",
    			'content' => $title,
    			'context' => 'entry-title',
    			'params'  => [
    				'wrap' => $wrap,
    			],
    			'echo'    => false,
    		]
    	);
    
    	echo apply_filters( 'genesis_post_title_output', $output, $wrap, $title ) . "\n"; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- title output is left unescaped to accommodate trusted user input. See https://codex.wordpress.org/Function_Reference/the_title#Security_considerations.
    
    }
    

    Tutorials for StudioPress Themes.

    December 22, 2022 at 3:00 am in reply to: Landing Page Template using Infinity Pro #506408
    Brad Dalton
    Participant

    See here https://ibb.co/ckCf8Pd


    Tutorials for StudioPress Themes.

    December 22, 2022 at 2:54 am in reply to: Landing Page Template using Infinity Pro #506407
    Brad Dalton
    Participant

    Understand. Varies depending on which editor you choose. For blocks, find Page Attributes on the Edit Page screen.

    I just checked and its there in pretty much the same place.


    Tutorials for StudioPress Themes.

    December 21, 2022 at 3:48 am in reply to: Header and site title questions. #506400
    Brad Dalton
    Participant

    1. Please clarify

    2. You can use the genesis_seo_title filter with the is_front_page() conditional tag.

    Example https://gist.github.com/cdils/9002451


    Tutorials for StudioPress Themes.

    December 21, 2022 at 3:42 am in reply to: Landing Page Template using Infinity Pro #506399
    Brad Dalton
    Participant

    1. The landing page template can be selected using the Page Attributes box on any Edit Page screen.

    However

    2. If you want to use the template on single posts, you'll need to modify the page template header.


    Tutorials for StudioPress Themes.

    December 15, 2022 at 6:55 am in reply to: Social Icons on the top-right corner – Either as a part of Menu or directly? #506360
    Brad Dalton
    Participant

    Here's one solution https://my.studiopress.com/documentation/snippets/navigation-menus/add-navigation-extras/


    Tutorials for StudioPress Themes.

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 15,342 total)
← 1 2 3 … 766 767 768 →
« 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