Rebranding to TheMoleHole, include logo
authorLaury GvR <laury@gaslightmedia.com>
Mon, 9 Nov 2015 14:28:16 +0000 (09:28 -0500)
committerLaury GvR <laury@gaslightmedia.com>
Mon, 9 Nov 2015 14:28:16 +0000 (09:28 -0500)
17 files changed:
assets/the-molehole-logo.jpg [new file with mode: 0644]
changelog.txt
functions.php
inc/customizer/colors.php
inc/customizer/controls.php
inc/customizer/display.php
inc/customizer/hooks.php
inc/functions/hooks.php
inc/functions/setup.php
inc/functions/storefront-extensions.php
inc/init.php
inc/structure/hooks.php
inc/structure/structure.php
js/galleria.js
style.css
style.scss
theme_info.txt

diff --git a/assets/the-molehole-logo.jpg b/assets/the-molehole-logo.jpg
new file mode 100644 (file)
index 0000000..e79169e
Binary files /dev/null and b/assets/the-molehole-logo.jpg differ
index ea32bd8..ba4a013 100644 (file)
@@ -1,4 +1,4 @@
-*** Galleria Changelog ***
+*** themoleholeonline Changelog ***
 
 2015.10.24 -  version 1.0.7
  * Fix - Ensure consistent product layout when using the WooCommerce customiser extension and setting the shop page to 4 columns.
index 3bded61..0158df6 100644 (file)
@@ -1,8 +1,8 @@
 <?php
 /**
- * Galleria engine room
+ * themoleholeonline engine room
  *
- * @package galleria
+ * @package themoleholeonline
  */
 
 /**
index 8623abc..17deeac 100644 (file)
@@ -1,8 +1,8 @@
 <?php
 /**
- * Galleria colors
+ * themoleholeonline colors
  *
- * @package galleria
+ * @package themoleholeonline
  */
 
 /**
index 32cfe92..449dc75 100644 (file)
@@ -1,12 +1,12 @@
 <?php
 /**
- * Galleria Customizer controls
+ * themoleholeonline Customizer controls
  *
- * @package galleria
+ * @package themoleholeonline
  */
 
 /**
- * Set up galleria customizer controls/settings
+ * Set up themoleholeonline customizer controls/settings
  */
 function g_customize_register( $wp_customize ) {
        $wp_customize->get_setting( 'background_color' )->transport                             = 'refresh';
index 7eba5de..d3a5389 100644 (file)
@@ -1,8 +1,8 @@
 <?php
 /**
- * Galleria custom selectors that adopt Storefront customizer settings
+ * themoleholeonline custom selectors that adopt Storefront customizer settings
  *
- * @package galleria
+ * @package themoleholeonline
  */
 
 /**
  * @return void
  */
 function g_add_customizer_css() {
-       $header_bg_color                                = storefront_sanitize_hex_color( get_theme_mod( 'storefront_header_background_color', apply_filters( 'galleria_default_header_background_color', '#ffffff' ) ) );
-       $accent_color                                   = storefront_sanitize_hex_color( get_theme_mod( 'storefront_accent_color', apply_filters( 'galleria_default_accent_color', '#cf5916' ) ) );
-       $header_link_color                              = storefront_sanitize_hex_color( get_theme_mod( 'storefront_header_link_color', apply_filters( 'galleria_default_header_background_color', '#2b2b2b' ) ) );
-       $text_color                                     = storefront_sanitize_hex_color( get_theme_mod( 'storefront_text_color', apply_filters( 'galleria_default_text_color', '#2b2b2b' ) ) );
+       $header_bg_color                                = storefront_sanitize_hex_color( get_theme_mod( 'storefront_header_background_color', apply_filters( 'themoleholeonline_default_header_background_color', '#ffffff' ) ) );
+       $accent_color                                   = storefront_sanitize_hex_color( get_theme_mod( 'storefront_accent_color', apply_filters( 'themoleholeonline_default_accent_color', '#cf5916' ) ) );
+       $header_link_color                              = storefront_sanitize_hex_color( get_theme_mod( 'storefront_header_link_color', apply_filters( 'themoleholeonline_default_header_background_color', '#2b2b2b' ) ) );
+       $text_color                                     = storefront_sanitize_hex_color( get_theme_mod( 'storefront_text_color', apply_filters( 'themoleholeonline_default_text_color', '#2b2b2b' ) ) );
        $button_text_color                              = storefront_sanitize_hex_color( get_theme_mod( 'storefront_button_text_color', apply_filters( 'storefront_default_button_text_color', '#ffffff' ) ) );
-       $button_background_color                = storefront_sanitize_hex_color( get_theme_mod( 'storefront_button_background_color', apply_filters( 'galleria_default_button_background_color', '#2b2b2b' ) ) );
-       $button_alt_background_color    = storefront_sanitize_hex_color( get_theme_mod( 'storefront_button_alt_background_color', apply_filters( 'galleria_default_button_alt_background_color', '#c41f61' ) ) );
+       $button_background_color                = storefront_sanitize_hex_color( get_theme_mod( 'storefront_button_background_color', apply_filters( 'themoleholeonline_default_button_background_color', '#2b2b2b' ) ) );
+       $button_alt_background_color    = storefront_sanitize_hex_color( get_theme_mod( 'storefront_button_alt_background_color', apply_filters( 'themoleholeonline_default_button_alt_background_color', '#c41f61' ) ) );
        $button_alt_text_color                  = storefront_sanitize_hex_color( get_theme_mod( 'storefront_button_alt_text_color', apply_filters( 'storefront_default_button_alt_text_color', '#ffffff' ) ) );
        $content_bg_color                               = storefront_sanitize_hex_color( get_theme_mod( 'sd_content_background_color' ) );
        $content_frame                                  = get_theme_mod( 'sd_fixed_width' );
@@ -24,7 +24,7 @@ function g_add_customizer_css() {
        if ( $content_bg_color && 'true' == $content_frame && class_exists( 'Storefront_Designer' ) ) {
                $bg_color       = str_replace( '#', '', $content_bg_color );
        } else {
-               $bg_color       = str_replace( '#', '', get_theme_mod( 'background_color', apply_filters( 'galleria_default_bg_color', 'ffffff' ) ) );
+               $bg_color       = str_replace( '#', '', get_theme_mod( 'background_color', apply_filters( 'themoleholeonline_default_bg_color', 'ffffff' ) ) );
        }
 
        $brighten_factor                                = apply_filters( 'storefront_brighten_factor', 25 );
index 7cb3532..90fe3b3 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * General setup hooks and filters
  *
- * @package galleria
+ * @package themoleholeonline
  */
 
 /**
- * Add Galleria specific CSS selectors based on customizer settings
+ * Add themoleholeonline specific CSS selectors based on customizer settings
  */
 add_action( 'wp_enqueue_scripts',                                                              'g_add_customizer_css', 1000 );
 
index 96b7387..8521d76 100644 (file)
@@ -2,7 +2,7 @@
 /**
  * General setup hooks and filters
  *
- * @package galleria
+ * @package themoleholeonline
  */
 
 /**
index ee269a6..973f409 100644 (file)
@@ -1,14 +1,14 @@
 <?php
 /**
- * Galleria setup functions
+ * themoleholeonline setup functions
  *
- * @package galleria
+ * @package themoleholeonline
  */
 
 /**
- * Assign the Galleria version to a var
+ * Assign the themoleholeonline version to a var
  */
-$theme                 = wp_get_theme( 'galleria' );
+$theme                 = wp_get_theme( 'themoleholeonline' );
 $g_version     = $theme['Version'];
 
 /**
@@ -33,7 +33,7 @@ function g_enqueue_child_styles() {
     wp_enqueue_style( 'libre-baskerville', '//fonts.googleapis.com/css?family=Libre+Baskerville:400,700,400italic', array( 'g-style' ) );
 
     wp_enqueue_script( 'modernizr', get_stylesheet_directory_uri() . '/js/modernizr.min.js', array( 'jquery' ), '2.8.3' );
-    wp_enqueue_script( 'galleria', get_stylesheet_directory_uri() . '/js/galleria.min.js', array( 'jquery' ), '1.0' );
+    wp_enqueue_script( 'themoleholeonline', get_stylesheet_directory_uri() . '/js/themoleholeonline.min.js', array( 'jquery' ), '1.0' );
 
     $shop_layout    = '';
 
index c8c4aad..6101610 100644 (file)
@@ -1,8 +1,8 @@
 <?php
 /**
- * Galleria Storefront extension compatibility
+ * themoleholeonline Storefront extension compatibility
  *
- * @package galleria
+ * @package themoleholeonline
  */
 
 /**
index 056faf7..7f79aba 100644 (file)
@@ -1,8 +1,8 @@
 <?php
 /**
- * Galleria engine room
+ * themoleholeonline engine room
  *
- * @package galleria
+ * @package themoleholeonline
  */
 
 /**
index 40168f8..7e0ded4 100644 (file)
@@ -1,8 +1,8 @@
 <?php
 /**
- * Galleria structural hooks and filters
+ * themoleholeonline structural hooks and filters
  *
- * @package galleria
+ * @package themoleholeonline
  */
 
 /**
index 76968d1..8a97d2f 100644 (file)
@@ -1,8 +1,8 @@
 <?php
 /**
- * Galleria structural functions
+ * themoleholeonline structural functions
  *
- * @package galleria
+ * @package themoleholeonline
  */
 
 /**
index 2787fd9..d82609e 100644 (file)
@@ -1,7 +1,7 @@
 /**
- * galleria.js
+ * themoleholeonline.js
  *
- * Javascript used by the Galleria theme.
+ * Javascript used by the themoleholeonline theme.
  */
 ( function() {
        jQuery( window ).load( function() {
index e65a0bd..d359571 100644 (file)
--- a/style.css
+++ b/style.css
@@ -1,8 +1,8 @@
 @charset "UTF-8";
 /*
-Theme Name:            Galleria
+Theme Name:            themoleholeonline
 Theme URI:             https://wordpress.org/themes/storefront
-Description:   A Storefront child theme designed for small WooCommerce stores / storefront child theme boilerplates. Galleria features a simple, traditional design which you can customise using the settings available in the WordPress Customizer. Looking for a theme for your new WooCommerce store? Look no further than Storefront and Galleria!
+Description:   A Storefront child theme designed for small WooCommerce stores / storefront child theme boilerplates. themoleholeonline features a simple, traditional design which you can customise using the settings available in the WordPress Customizer. Looking for a theme for your new WooCommerce store? Look no further than Storefront and themoleholeonline!
 Author:                        WooThemes
 Author URI:            http://woothemes.com
 Template:              storefront
@@ -10,9 +10,9 @@ Version:              1.0.7
 License:               GNU General Public License v2 or later
 License URI:   http://www.gnu.org/licenses/gpl-2.0.html
 Tags:                  light, dark, two-columns, right-sidebar, left-sidebar, responsive-layout, accessibility-ready
-Text Domain:   galleria
+Text Domain:   themoleholeonline
 */
-/* =Galleria styles starts here
+/* =themoleholeonline styles starts here
 -------------------------------------------------------------- */
 .animated {
   -webkit-animation-duration: 1s;
index 7c3b360..8269b43 100644 (file)
@@ -1,7 +1,7 @@
 /*
-Theme Name:            Galleria
+Theme Name:            themoleholeonline
 Theme URI:             https://wordpress.org/themes/storefront
-Description:   A Storefront child theme designed for small WooCommerce stores / storefront child theme boilerplates. Galleria features a simple, traditional design which you can customise using the settings available in the WordPress Customizer. Looking for a theme for your new WooCommerce store? Look no further than Storefront and Galleria!
+Description:   A Storefront child theme designed for small WooCommerce stores / storefront child theme boilerplates. themoleholeonline features a simple, traditional design which you can customise using the settings available in the WordPress Customizer. Looking for a theme for your new WooCommerce store? Look no further than Storefront and themoleholeonline!
 Author:                        WooThemes
 Author URI:            http://woothemes.com
 Template:              storefront
@@ -9,11 +9,11 @@ Version:              1.0.7
 License:               GNU General Public License v2 or later
 License URI:   http://www.gnu.org/licenses/gpl-2.0.html
 Tags:                  light, dark, two-columns, right-sidebar, left-sidebar, responsive-layout, accessibility-ready
-Text Domain:   galleria
+Text Domain:   themoleholeonline
 */
 
 
-/* =Galleria styles starts here
+/* =themoleholeonline styles starts here
 -------------------------------------------------------------- */
 
 @import 'bourbon';
@@ -258,6 +258,10 @@ a {
        }
 }
 
+.site-branding .site-title a {
+    background-image: url("../assets/the-molehole-logo.jpg");
+}
+
 
 
 .site-footer {
@@ -1602,4 +1606,4 @@ p.stars {
                padding-left: 4.236em;
                padding-right: 4.236em;
        }
-}
\ No newline at end of file
+}
index e38fa1b..eab8988 100644 (file)
@@ -1,3 +1,3 @@
 887931
 2429c1dde521031cd053886b15844bbf
-galleria/style.css
\ No newline at end of file
+themoleholeonline/style.css
\ No newline at end of file