Forum Replies Created
-
AuthorPosts
-
ericcantu
ParticipantJust following up that I later found all the instructions for how to replicate the demo within the set up instructions 🙂
ericcantu
ParticipantSame. I installed the theme, imported the xml file with demo content, and nothing. The file only contains posts and pages, there's no "front page" or "home page" setup to look like the demo. Total joke.
ericcantu
ParticipantAnd by collapsed I simply mean it's closed.
Normally, when you arrive at a website on mobile, the menu is closed showing just "menu" or the hamburger style 3 horizontal lines. To see its contents, you click it.
But when arriving at my site, for some reason on mobile, the menu is open. The second you start to scroll it suddenly closes. I don't know why it's doing this. How can I fix it so that the menu is closed when you arrive?
April 12, 2023 at 8:57 pm in reply to: Resizing content width on Infinity Pro Front Page sections #507270ericcantu
ParticipantI have a question about your site here, sorry as it's unrelated to your question, but how did you set up From the Blog section on your main home page with the grid style showing 6 posts and pagination?
ericcantu
ParticipantI found that Page Attributes box but it doesn't offer Landing Page as an option. When I click on it it shows a list of my other published pages. If I type in Landing Page it just immediately clears and goes blank.
ericcantu
ParticipantI appreciate the response, but when I mention that I don't have a Page Attributes box on the right side of my content to choose from and then you tell me all I have to do is select from the Page Attributes box... lol
ericcantu
ParticipantSo I found this css for removing the date. I decided to leave the author in the post as it was the dates I was most looking to remove.
This css can be added to the functions.php of the child theme.
add_filter( 'genesis_post_info', 'sp_post_info_filter' );
/**
* Customize entry meta in the entry header.
*
* @param string $post_info Existing post info
* @return Modified post info
*/
function sp_post_info_filter( $post_info ) {
$post_info = __( 'by', 'genesis' ) . ' [post_author_posts_link] [post_comments] [post_edit]';return $post_info;
}ericcantu
ParticipantThese are the steps I used to fix the issue:
1 - add this code to the bottom of my child theme's function.php file:
add_theme_support( 'responsive-embeds' );
2 - add a container block to the page/post
3 - inside container block I added youtube block and then added my video URL
4 - make sure to clear all caching
Problem solved.
ericcantu
ParticipantSeems like Impact is the only font not showing up on mobile. Switched to a different font.
ericcantu
ParticipantAny help? Anyone?
ericcantu
ParticipantAny help? Anyone?
ericcantu
ParticipantThe thumbnail already is a custom image. On mobile it shows too wide for the screen so it cuts it off. That's the whole point of the question, I'd like to figure out why the thumbnail isn't responsive on mobile and gets cut off and if there's a way to get it to be sized correctly for mobile.
ericcantu
ParticipantI was up to date with Genesis.
After updating to WordPress 5.8 and having the issues from the Appearance>Customize screen which wasn't allowing me to edit or change the Front Page widgets or Sidebar widgets, I went back to the previous version of WordPress, 5.7.2.
Hopefully they figure out some kind of fix.
ericcantu
ParticipantFound it.
I had added some custom footer code into the functions.php.Deleted it, and now I'm able to make changes through the customizer.
All taken care of.
🙂ericcantu
ParticipantYeah, that's actually the spot I mentioned that I had tried earlier. I must have made the change elsewhere because what shows there is the original short code that my edits apparently override.
I'm thinking when I made the edits, this spot in the customizer wasn't yet available, or at least I didn't know about it, so I must have made the changes elsewhere that override the short code.
And so now, no matter what I put there, it's not showing in the footer. Just trying to figure out where I made those edits so I can update it.
ericcantu
ParticipantI FOUND IT! The Layout Settings have now moved to underneath the new Genesis Button. 🙂 Whew! Click on that button and you'll find the Custom Body Class, etc.
ericcantu
ParticipantI'm using Gutenberg. I never had a problem using it before, but now that I'm back, the Layout Settings are completely vanished from the Post Editor.
March 24, 2018 at 9:01 pm in reply to: Infinity Pro Categories Page, Any way to only show excerpts? #218312ericcantu
ParticipantErika I love you. lol
Thank you so much for this super easy fix to my issue. I really appreciate it! -
AuthorPosts