echo '<div class="header-image-background"';
if(is_product() || is_page(101) ){
- $image_data = wp_get_attachment_image_src(get_post_thumbnail_id(101), "full");
- echo ' style="background-image: url('.$image_data[0].');padding:0;padding-bottom:20%;background-position:center center;background-size: cover;background-repeat:no-repeat;max-height: 370px "';
+ $image_data = wp_get_attachment_image_src(get_post_thumbnail_id(101), "full");
+
+ if (!$image_data) {
+ $featured_image_url = get_template_directory_uri().'/assets/default-product-featured.png';
+ } else {
+ $featured_image_url = $image_data[0];
+ }
+ echo ' style="background-image: url('.$featured_image_url.');padding:0;padding-bottom:20%;background-position:center center;background-size: cover;background-repeat:no-repeat;max-height: 370px "';
} else if ( is_product_category() ){