Enable default featured image for product categories
authorLaury GvR <laury@gaslightmedia.com>
Wed, 6 Nov 2019 16:28:04 +0000 (11:28 -0500)
committerLaury GvR <laury@gaslightmedia.com>
Wed, 6 Nov 2019 16:28:04 +0000 (11:28 -0500)
functions.php
header.php
style.css

index a0d7d02..4a1d234 100644 (file)
@@ -198,7 +198,7 @@ function glm_site_scripts()
         'glm_foundation',
         get_template_directory_uri() . '/js/app.js',
         'jquery',
-        '1.0.6',
+        '1.0.7',
         true
     );
     wp_enqueue_style('jquery-style', '//ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/jquery-ui.css');
@@ -242,6 +242,9 @@ function glm_get_header() {
             $tag = get_queried_object();
             $tagID = $tag->term_id;
             $thumbnail = z_taxonomy_image_url( $tagID);
+            if (!$thumbnail) {
+                $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; "';
 //          $image_data = wp_get_attachment_image_src(get_post_thumbnail_id(100), "full");
index 766df70..14400dd 100644 (file)
@@ -5,7 +5,7 @@
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     <title><?php wp_title(); ?></title>
     <link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri() ; ?>/favicon.ico?v=1.0">
-    <link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri() ; ?>/css/app.css?v=1.0.6.0">
+    <link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri() ; ?>/css/app.css?v=1.0.7.0">
     <link href='//fonts.googleapis.com/css?family=Josefin+Sans:400,600,700' rel='stylesheet' type='text/css'>
     <?php wp_head(); ?>
   </head>
index 8f1fd19..b2d0922 100644 (file)
--- a/style.css
+++ b/style.css
@@ -3,5 +3,5 @@ Theme Name: FineWineJourneys
 Author: Gaslight Media
 Author URI: http://www.gaslightmedia.com
 Description: A theme for FineWineJourneys
-Version: 1.0.6.0
+Version: 1.0.7.0
 */