Forum Replies Created
-
AuthorPosts
-
Bren Pace
MemberThank you for your kind help.
Bren Pace
MemberI gotcha! 🙂
Bren Pace
MemberAWESOME! It worked! Thank you!
Bren Pace
MemberI found this in the front-page.php
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_content_sidebar' );
Can I just alter that second part?
Bren Pace
MemberYou are the bomb-diggity, Brad! Thanks so much!
Bren Pace
MemberBy adding this
//* Remove content/sidebar layout
genesis_unregister_layout( 'content-sidebar' );Will also remove it from the blog pages? Or would this just go into the front-page?
Bren Pace
MemberI ended up going into the File Manager via CPanel to remove the image and replace. I'm assuming this may be a glitch in the Customizer, as it happened in two different websites. Thanks for your help. I'm marking this resolved.
Bren Pace
MemberThis is what the code looks like? Why is it different than the others? I have tried on both sites to replace by the customizer and can't even find the default image that it continues to keep there.
`genesis_widget_area( 'front-page-1', array(
'before' => '<div class="front-page-1 flexible-widget-area bg bg-scrim" style="background-image: url(' . $front_page_image_1 . ')"><div class="wrap">',
'after' => '</div></div>',
) );genesis_widget_area( 'front-page-2', array(
'before' => '<div class="front-page-2 flexible-widget-area"><div class="wrap"><div class="flexible-widgets widget-area' . bbs_widget_area_class( 'front-page-2' ) . '">',
'after' => '</div></div></div>',
) );genesis_widget_area( 'front-page-3', array(
'before' => '<div class="front-page-3 flexible-widget-area bg bg-scrim" style="background-image: url(' . $front_page_image_2 . ')"><div class="wrap">',
'after' => '</div></div>',
) );genesis_widget_area( 'front-page-4', array(
'before' => '<div class="front-page-4 flexible-widget-area"><div class="wrap"><div class="flexible-widgets widget-area' . bbs_widget_area_class( 'front-page-4' ) . '">',
'after' => '</div></div></div>',
) );}
//* Add remaining widget to front page
function bbs_front_page_widgets_2() {if ( get_query_var( 'paged' ) >= 2 )
return;$front_page_image_3 = get_option( 'bbs-front-page-image-3', sprintf( '%s/images/front-page-image-3.jpg', get_stylesheet_directory_uri() ) );
genesis_widget_area( 'front-page-5', array(
'before' => '<div class="front-page-5 hero flexible-widget-area bg bg-scrim" style="background-image: url(' . $front_page_image_3 . ')"><div class="wrap"><div class="flexible-widgets widget-area' . bbs_widget_area_class( 'front-page-5' ) . '">',
'after' => '</div></div></div>',
) );Bren Pace
MemberThanks Brad,
So The front page 5 widget area is not capturing the Image 3. It's an image that came with the theme?
February 13, 2017 at 3:45 pm in reply to: Outreach Pro: Additional Widget before Footer Widgets #201088Bren Pace
MemberVictor,
That is so sweet of you. I know some coding but anytime I get in the editors, I get a little freaked. 🙂 I really appreciate you sharing the entire coding! You're making someone very happy! 😉
Bren
February 13, 2017 at 3:40 pm in reply to: Outreach Pro: Additional Widget before Footer Widgets #201086Bren Pace
MemberOk, thanks so much
February 13, 2017 at 3:28 pm in reply to: Outreach Pro: Additional Widget before Footer Widgets #201082Bren Pace
MemberHi Victor and thank you for your reply.
So add the code:
add_action( 'genesis_before_footer', 'my_new_widget_area', 5 );to the bottom of my function.php and that's it?
Bren Pace
MemberSo I'm still struggling. I'm not sure which content to pull and replace with the new grid loop with images.
Is this what I'm replacing?
//* Genesis grid loop
function minimum_grid_loop_helper() {if ( function_exists( 'genesis_grid_loop' ) ) {
genesis_grid_loop( array(
'features' => 0,
'feature_image_size' => 0,
'feature_content_limit' => 0,
'grid_image_size' => 0,
'grid_content_limit' => 250,
'more' => __( '[Read more]', 'minimum' ),
) );} else {
genesis_standard_loop();
}
}
//* Run the Genesis loop
genesis();Bren Pace
MemberOh my gosh, thank you! You're awesome, Brad!
Bren Pace
MemberThank you, Dareen and Moody.
I don't want to bash Yoast because apparently they have something good going on, but there are also several other SEO plugin's out there that are less popular.
I'm sticking to my native theme seo and going to ride it out for awhile. I will agree that Yoast is rather confusing to set up. I tried it a few years ago and was totally lost. 🙂
Thanks again for good convo.
Bren Pace
MemberThanks so much for your info!
Bren Pace
MemberThank you, Gregg. I don't focus too much on SEO and quickly frankly I was using Yoast until the latest update and it hosed my blog. I think the Theme SEO gives me just the amount of SEO I'm looking for. I do thank you for the additional information. Thanks.
Brenda
Bren Pace
MemberThank you all for replying. I've been debating this with some other bloggers and most have told me "Yes, you need Yoast" however, these are also bloggers that aren't using Genesis Framework.
I'm going to stick to what I've been doing and keep my webby one less plugin free. 😉
Thank you again!
Brenda
Bren Pace
MemberSame to you Rob!
Bren Pace
MemberThank you so much! I removed that code plus changed the background color! Perfect! 🙂
-
AuthorPosts