Forum Replies Created
-
AuthorPosts
-
Marcy
ParticipantHere 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.
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
Marcy
ParticipantIn 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
Marcy
ParticipantThat's really a question to ask StudioPress. We don't know the answer to that question.
Marcy | Amethyst Website Design | Twitter
Marcy
ParticipantIn 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
Marcy
ParticipantYou 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
Marcy
ParticipantYou 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
Marcy
ParticipantChanging 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
Marcy
ParticipantYou 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
Marcy
ParticipantIt 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
Marcy
ParticipantI 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
Marcy
ParticipantWhen 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
Marcy
ParticipantFor 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
Marcy
ParticipantBoth 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:
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 #494401Marcy
ParticipantYes, 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 #494387Marcy
ParticipantI'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
Marcy
ParticipantYou 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
Marcy
ParticipantRevolution 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
Marcy
ParticipantThe 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 #491926Marcy
ParticipantYou 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
Marcy
ParticipantArticle 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.
Marcy | Amethyst Website Design | Twitter
-
AuthorPosts