Forum Replies Created
-
AuthorPosts
-
Walter LopezParticipant
Hi @wanderer,
I want to add a couple of notes to complement what Anita said.- I don't think you need to change theme because it's not being "updated" or it's not Gutenberg-ready. Primarily because Gutenberg only introduces a "new way" to edit your site. I believe the developer suggested a new theme more on the aesthetic side than functionality.
- Changing theme will not improve your PageSpeed scores. The scores you are getting are "normal" when you display ads. From my experience optimizing sites running Mediavine ads, you can configure the script to load Async (more: https://help.mediavine.com/en/articles/425160-updating-to-the-async-script-wrapper)
- I highly recommend ensuring your site loads on HTTPS as it's a ranking factor from some time ago
Hope this helps!
Website: wpallied.com | Twitter: @lopwalj
January 16, 2021 at 10:48 am in reply to: Display Advanced Custom Fields for Custom Post Type #502667Walter LopezParticipantHello Jadie,
Assuming you want to display the fields inside the content, I would load the function on thegenesis_entry_content
hook, something like:add_action('genesis_entry_content', 'wpa_do_family_tree'); function wpa_do_family_tree() { // Check if we are on the "member" CPT, if not bail early. if ( ! is_singular('member') ) { return; } $biography = get_field('biography'); $birth_date = get_field('approximate_birth_date'); $death_date = get_field('approximate_death_date'); // Do stuff with the data. }
Website: wpallied.com | Twitter: @lopwalj
Walter LopezParticipantHello danielleB,
You can translate the Customizer options by following the Translating Customizer and Theme Options guide from WPML.
Website: wpallied.com | Twitter: @lopwalj
Walter LopezParticipantNot necessarily. StudioPress don't update the child themes often. The last ones I have seen are converting them to the Gutenberg editor. Most of the updates are done to the Genesis framework so I would say you are good.
Just remember that if you ever need to update the child theme, then yes, you will need to port over the changes you made.
Website: wpallied.com | Twitter: @lopwalj
Walter LopezParticipantIn this case, you are using a child theme (what you call a child CSS file) so this is not an option.
If the changes are small, I would suggest adding the css in the Custom CSS section in the customizer.
If you need to make a considerable amount of changes, then Design Palette Pro is a good option.
Website: wpallied.com | Twitter: @lopwalj
Walter LopezParticipantWell, in theory yes.
If you update the theme (manually) then you will lose the modifications. Just keep in mind that StudioPress child themes don't update automatically.
Website: wpallied.com | Twitter: @lopwalj
Walter LopezParticipantHello leoleoso,
You may need to update the css located in /essence-pro/lib/gutenberg/front-end.css. The class iswp-block-quote
.
Website: wpallied.com | Twitter: @lopwalj
July 6, 2018 at 4:40 pm in reply to: Mixed Content in Header/Background Image Beautiful Pro Theme #221398Walter LopezParticipantHello Stephanie,
You need to remove the image, delete from the gallery and upload it again.
Website: wpallied.com | Twitter: @lopwalj
-
AuthorPosts