$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';
+ $featured_image_url = get_template_directory_uri().'/assets/default-product-featured.jpg';
} else {
$featured_image_url = $image_data[0];
}
$thumbnail = z_taxonomy_image_url( (int)$object->object_id );
if (!$thumbnail) {
- $thumbnail = get_template_directory_uri().'/assets/default-product-featured.png';
+ $thumbnail = get_template_directory_uri().'/assets/default-product-featured.jpg';
}
echo ' style="background-image: url('.$thumbnail.'?v=1.0);padding:0;padding-bottom:20%;background-position:center center;background-size: cover;background-repeat:no-repeat;max-height: 370px; "';