• 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

Marcy

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 640 total)
1 2 3 … 30 31 32 →
  • Author
    Posts
  • May 5, 2021 at 1:04 pm in reply to: Menu Scrolling and additional sticky header #503950
    Marcy
    Participant

    Here are 2 tutorials.

    For the first one, you can add the CSS in the Additional CSS in the Customizer or at the end of your stylesheet - adjust the settings as needed. You don’t need any of the php as long as you limit that menu item to 2 levels.

    Mega Menu Navigation for Genesis Themes using CSS

    The other tutorial is here, but is a membership tutorial - I didn’t notice at first
    https://sridharkatakam.com/mega-menus-genesis/


    Marcy | Amethyst Website Design | Twitter

    January 20, 2021 at 3:17 pm in reply to: Google Fonts – how to change? #502758
    Marcy
    Participant

    In all versions of Revolution Pro, you can replace Google Fonts in functions.php with new ones.

    It's the section:

    function revolution_enqueue_scripts_styles() {
    
    	wp_enqueue_style(
    		genesis_get_theme_handle() . '-fonts',
    		'//fonts.googleapis.com/css?family=Noto+Serif+SC:300,600|Playfair+Display:400,700,700i|Poppins:400',
    		[],
    		genesis_get_theme_version()
    	);
    /* More functions */
    }

    You will replace:

    wp_enqueue_style(
    		genesis_get_theme_handle() . '-fonts',
    		'//fonts.googleapis.com/css?family=Noto+Serif+SC:300,600|Playfair+Display:400,700,700i|Poppins:400',
    		[],
    		genesis_get_theme_version()
    	);

    with

    wp_enqueue_style(
    		genesis_get_theme_handle() . '-fonts',
    		'//fonts.googleapis.com/css?family=Noto+Serif+SC:300,600|Playfair+Display:400,700,700i|Poppins:400',
    		[],
    		genesis_get_theme_version()
    	);

    Marcy | Amethyst Website Design | Twitter

    August 17, 2020 at 5:38 pm in reply to: Revolution Pro full width image on homepage #500634
    Marcy
    Participant

    That's really a question to ask StudioPress. We don't know the answer to that question.


    Marcy | Amethyst Website Design | Twitter

    February 12, 2020 at 9:15 am in reply to: Simple Social Icons Output Coding Suggestion #496681
    Marcy
    Participant

    In the link Anita added above, Nick says, “ It sounds like the tool may be flagging these title tags without cause. I would not expect them to negatively affect SEO.”


    Marcy | Amethyst Website Design | Twitter

    February 7, 2020 at 6:40 pm in reply to: Theme Editor Gone? #496544
    Marcy
    Participant

    You can look in your wp-config.php to see if the editor is limited there.
    There would be a line like this
    define('DISALLOW_FILE_EDIT',true);

    You can comment it out with a # in front of the line or delete it.

    Some hosting companies are also limiting access to the theme files, so you can contact them.


    Marcy | Amethyst Website Design | Twitter

    February 7, 2020 at 6:36 pm in reply to: Best forms plugin? #496543
    Marcy
    Participant

    You can use the forms plugin that works the best for you. It's not that one is better than the others; it's just what is easy for SP to use right now.

    You will need the premium version for each of those forms to do conditional logic, so the price may be a factor for you.

    There is basic form styling in all themes, but you may need to add specific styles for the buttons or other more specialized fields, if you use a form plugin that is not styled in the theme.


    Marcy | Amethyst Website Design | Twitter

    January 28, 2020 at 5:30 pm in reply to: Theme changes and content transfer #496280
    Marcy
    Participant

    Changing the theme does not affect your content - you won't lose anything.

    What will happen is that widgets that you currently have under Appearance > Widgets will move to different widget areas.

    Also if you use the theme setup instructions, it may add additional content, but it won't delete any that you already have.
    Once you get the theme set up, you can delete anything that was added that you don't want.


    Marcy | Amethyst Website Design | Twitter

    January 28, 2020 at 5:26 pm in reply to: No. or listings on arhive page #496279
    Marcy
    Participant

    You can change the number of listings on the archive page by adding this to functions.php

    // Change number of posts on Community Archive to 16.
    add_action( 'pre_get_posts', 'awd_listings_archive_posts' );
    function awd_listings_archive_posts( $query ) {
    
    	if ( $query->is_main_query() && ! is_admin() && is_post_type_archive( 'listing' ) ) {
    
    		$query->set( 'posts_per_page', '12' );
    	}
    }

    Change the posts_per_page to be whatever number you would like to have on the archive page.


    Marcy | Amethyst Website Design | Twitter

    January 28, 2020 at 5:20 pm in reply to: Search features on listings archive page #496278
    Marcy
    Participant

    It looks like you've added a search bar for the AgentPress Listings plugin on your listings archive.

    If that's what you needed, you can mark this thread as resolved.


    Marcy | Amethyst Website Design | Twitter

    January 28, 2020 at 5:15 pm in reply to: Navigation Pro – Hero image #496277
    Marcy
    Participant

    I think I answered this for you on Facebook. You can mark the thread "Resolved".

    Here's the solution, for others

    You will need to edit the file /lib/image-functions.php.
    Find line 31 and comment out the section on full-width-content with /* */, like this:

    
    if ( /*genesis_site_layout() === 'full-width-content' && */$image && is_singular() ) {

    Marcy | Amethyst Website Design | Twitter

    January 28, 2020 at 5:10 pm in reply to: Additional List for Essence Pro (both UL and OL) #496276
    Marcy
    Participant

    When you are creating the lists using the block editor, over on the left when you are on the Block tab, is Advanced. Put a class in there like - serif-list.

    Then in Appearance > Customize > Additional CSS add

    ul.serif-list {
    font-family: 'Cormorant Garamond', serif;
    }

    If that doesn't work for your theme, then use:

    ul.serif-list li {
    font-family: 'Cormorant Garamond', serif;
    }

    Marcy | Amethyst Website Design | Twitter

    January 28, 2020 at 5:00 pm in reply to: sub menu issue/ contact me issue #496275
    Marcy
    Participant

    For the sub-menu
    Find functions.php and near lines 224 to 226. Comment them out with // like this:

    // Repositions secondary navigation menu.
    // remove_action( 'genesis_after_header', 'genesis_do_subnav' );
    // add_action( 'genesis_footer', 'genesis_do_subnav', 9 );

    The theme already styles the button in WPForms.
    But you are using a different contact form, maybe from Jetpack?

    Try using WPForms for your contact page and then the button will be the same as on the other pages.


    Marcy | Amethyst Website Design | Twitter

    January 27, 2020 at 11:05 am in reply to: Need guidance on Real Estate themes and IDX #496239
    Marcy
    Participant

    Both themes will work well with IDX Broker. It's more a matter of styling.

    The Agent Focused Pro theme has styles in the theme for IDX Broker.
    This means that when you add the IDX Broker IMPress widget and use it for your search bar and Featured Properties, it will be styled as you see on the front page.

    Agent Focused Pro was also updated in Oct 2019, to add support fo the block editor.
    It also has a one-click theme install, and you can choose between setting it up for AgentPress Listings or IDX Broker.

    You can watch a quick 3-minute video of the process here:

    Agent Focused Pro 2 Theme Setup

    You will need to set up AgentPress Pro theme manually.


    Marcy | Amethyst Website Design | Twitter

    November 2, 2019 at 9:31 am in reply to: Problem icons (search and menu) of the Essence Pro theme #494401
    Marcy
    Participant

    Yes, that’s what I thought would happen from what you posted above; I just was checking.

    All the best!


    Marcy | Amethyst Website Design | Twitter

    November 1, 2019 at 6:03 pm in reply to: Problem icons (search and menu) of the Essence Pro theme #494387
    Marcy
    Participant

    I'm seeing both the search icon and the menu bars icon on the staging site you listed
    https://staging-psicologodrgiampaolofalasca.kinsta.cloud/

    So did you fix it?


    Marcy | Amethyst Website Design | Twitter

    August 8, 2019 at 6:45 pm in reply to: Revolution Pro full width image on homepage #492897
    Marcy
    Participant

    You have to find and change the sections listed above in
    /revolution-pro/lib/gutenberg/front-end.css.

    @media only screen and (min-width: 1000px) {
    
    	.page.full-width-content .entry-content .alignfull,
    	.single.full-width-content .entry-content .alignfull {
    		/*margin-left: calc(-960px / 2 + 100% / 2);
    		margin-right: calc(-960px / 2 + 100% / 2);
    		max-width: 960px;*/
    		margin-left: calc(-100vw / 2 + 100% / 2);
    		margin-right: calc(-100vw / 2 + 100% / 2);
    		max-width: 100vw;
    	}
    }
    
    @media only screen and (min-width: 1240px) {
    
    	.page.full-width-content .entry-content .alignfull,
    	.single.full-width-content .entry-content .alignfull {
    		/*margin-left: calc(-1200px / 2 + 100% / 2);
    		margin-right: calc(-1200px / 2 + 100% / 2);
    		max-width: 1200px;*/
    		margin-left: calc(-100vw / 2 + 100% / 2);
    		margin-right: calc(-100vw / 2 + 100% / 2);
    		max-width: 100vw;
    	}
    
    	.page.full-width-content.custom-page .entry-content .alignfull {
    		/*margin-left: -200px;
    		margin-right: -200px;
    		max-width: 1200px;*/
    		margin-left: calc(-100vw / 2 + 100% / 2);
    		margin-right: calc(-100vw / 2 + 100% / 2);
    		max-width: 100vw;
    	}
    }
    
    

    Marcy | Amethyst Website Design | Twitter

    June 25, 2019 at 5:15 pm in reply to: Revolution Pro full width image on homepage #491928
    Marcy
    Participant

    Revolution Pro has two media queries for .alignfull that you would need to change.

    @media only screen and (min-width: 1000px) {
    
    	.page.full-width-content .entry-content .alignfull,
    	.single.full-width-content .entry-content .alignfull {
    		margin-left: calc(-960px / 2 + 100% / 2);
    		margin-right: calc(-960px / 2 + 100% / 2);
    		max-width: 960px;
    	}
    }

    and

    @media only screen and (min-width: 1240px) {
    
    	.page.full-width-content .entry-content .alignfull,
    	.single.full-width-content .entry-content .alignfull {
    		margin-left: calc(-1200px / 2 + 100% / 2);
    		margin-right: calc(-1200px / 2 + 100% / 2);
    		max-width: 1200px;
    	}
    
    	.page.full-width-content.custom-page .entry-content .alignfull {
    		margin-left: -200px;
    		margin-right: -200px;
    		max-width: 1200px;
    	}
    }

    You could also try to do it this way instead
    https://www.billerickson.net/full-and-wide-alignment-in-gutenberg/


    Marcy | Amethyst Website Design | Twitter

    June 25, 2019 at 5:05 pm in reply to: Magazine Pro – Previous/Next pagination buttons #491927
    Marcy
    Participant

    The front page uses Genesis Featured Posts widget which doesn't have pagination.
    Pagination also doesn't work well on the front page, unless it's your blog page.

    I usually just add a link to the category archive or add a text widget to each section with a link to the blog page.

    There is this tutorial, but it's premium and doesn't look like it uses Genesis Featured Posts or Pages.
    https://wpsites.net/web-design/add-featured-posts-with-pagination-in-genesis/


    Marcy | Amethyst Website Design | Twitter

    June 25, 2019 at 4:52 pm in reply to: Help increasing overall content width of Revolution Pro #491926
    Marcy
    Participant

    You can change the max-widths from 1280px to any number that you like, such as 1600px or even to 100% for full screen on all monitors.

    You will need to look for max-widths in style.css and then the files in
    /lib/gutenberg/ - the .css files and also there is a content width set in
    /lib/gutenberg/init.php


    Marcy | Amethyst Website Design | Twitter

    June 25, 2019 at 4:46 pm in reply to: Executive Pro Theme and Schema Markup #491925
    Marcy
    Participant

    Article Schema is usually from Yoast SEO.
    Are you using Yoast?

    This article tells you about it and has a plugin to use only Yoast Schema or a code snippet at the bottom to use only Genesis Schema.

    Using Yoast SEO Structured Data with Genesis


    Marcy | Amethyst Website Design | Twitter

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 640 total)
1 2 3 … 30 31 32 →

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

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