Community Forums › Forums › Archived Forums › General Discussion › Gallery Pro: Front-Page Image Issue
Tagged: front page, Gallery Pro, widget background
- This topic has 5 replies, 2 voices, and was last updated 7 years, 6 months ago by Bren Pace.
-
AuthorPosts
-
February 16, 2017 at 11:21 am #201326Bren PaceParticipant
Hi.
I'm working with the Gallery Pro theme and for some reason, no matter what image I place into the Front-Page-3, a default image shows up. I've had this issue on two sites to date.
virtualbren.com
goldenwoofs.comPlease help. Thanks
http://www.virtualbren.comFebruary 16, 2017 at 2:38 pm #201334Brad DaltonParticipantThere's 3 images and 5 widget areas.
front page 1 uses image 1
front page 3 uses image 2
front page 5 uses image 3
February 17, 2017 at 12:21 pm #201394Bren PaceParticipantThanks Brad,
So The front page 5 widget area is not capturing the Image 3. It's an image that came with the theme?
February 17, 2017 at 12:31 pm #201397Brad DaltonParticipantShould be. You can replace it in the Customizer or the child themes images folder.
February 17, 2017 at 12:35 pm #201398Bren PaceParticipantThis 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>',
) );February 19, 2017 at 7:49 am #201524Bren PaceParticipantI 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.
-
AuthorPosts
- The topic ‘Gallery Pro: Front-Page Image Issue’ is closed to new replies.