• 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 - 1 through 20 (of 15,317 total)
1 2 3 … 764 765 766 →
  • Author
    Posts
  • 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.


    Get Help – Book Consultation.

    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.


    Get Help – Book Consultation.

    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.


    Get Help – Book Consultation.

    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/


    Get Help – Book Consultation.

    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.


    Get Help – Book Consultation.

    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?


    Get Help – Book Consultation.

    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/


    Get Help – Book Consultation.

    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.


    Get Help – Book Consultation.

    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.


    Get Help – Book Consultation.

    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.
    
    }
    

    Get Help – Book Consultation.

    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


    Get Help – Book Consultation.

    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.


    Get Help – Book Consultation.

    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


    Get Help – Book Consultation.

    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.


    Get Help – Book Consultation.

    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/


    Get Help – Book Consultation.

    November 19, 2022 at 2:05 am in reply to: Forum Dead and Useless. Genesis outdated? Is it time to jump ship ? #506201
    Brad Dalton
    Participant

    There are thousands of tutorials out there that provide support for Genesis child themes.

    Why don't you publish your theme on Github and link to it so the community has direct access and can contribute.


    Get Help – Book Consultation.

    November 11, 2022 at 3:42 am in reply to: Blockquote style #506152
    Brad Dalton
    Participant

    Here's your themes default blockquote CSS

    blockquote,
    blockquote::before {
    	color: #888;
    }
    
    blockquote {
    	margin: 40px;
    }
    
    blockquote::before {
    	content: "\201C";
    	display: block;
    	font-size: 30px;
    	height: 0;
    	left: -20px;
    	position: relative;
    	top: -10px;
    }
    

    You can modify this CSS yourself to change the styling.


    Get Help – Book Consultation.

    November 5, 2022 at 1:45 am in reply to: Create a one page website #506132
    Brad Dalton
    Participant

    As long as its WordPress, your content will be saved in the database and you can use another theme like Infinity Pro.


    Get Help – Book Consultation.

    November 4, 2022 at 8:09 am in reply to: Create a one page website #506126
    Brad Dalton
    Participant

    Try this theme demo https://www.studiopress.com/themes/infinity/#demo-full


    Get Help – Book Consultation.

    November 4, 2022 at 8:07 am in reply to: Customize WooCoomerce category with extra text field #506125
    Brad Dalton
    Participant

    Sure. Please book a consultation https://wpsites.net/product/hourly-consulting/


    Get Help – Book Consultation.

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 15,317 total)
1 2 3 … 764 765 766 →

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