-*** 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.
<?php
/**
- * Galleria engine room
+ * themoleholeonline engine room
*
- * @package galleria
+ * @package themoleholeonline
*/
/**
<?php
/**
- * Galleria colors
+ * themoleholeonline colors
*
- * @package galleria
+ * @package themoleholeonline
*/
/**
<?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';
<?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' );
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 );
/**
* 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 );
/**
* General setup hooks and filters
*
- * @package galleria
+ * @package themoleholeonline
*/
/**
<?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'];
/**
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 = '';
<?php
/**
- * Galleria Storefront extension compatibility
+ * themoleholeonline Storefront extension compatibility
*
- * @package galleria
+ * @package themoleholeonline
*/
/**
<?php
/**
- * Galleria engine room
+ * themoleholeonline engine room
*
- * @package galleria
+ * @package themoleholeonline
*/
/**
<?php
/**
- * Galleria structural hooks and filters
+ * themoleholeonline structural hooks and filters
*
- * @package galleria
+ * @package themoleholeonline
*/
/**
<?php
/**
- * Galleria structural functions
+ * themoleholeonline structural functions
*
- * @package galleria
+ * @package themoleholeonline
*/
/**
/**
- * galleria.js
+ * themoleholeonline.js
*
- * Javascript used by the Galleria theme.
+ * Javascript used by the themoleholeonline theme.
*/
( function() {
jQuery( window ).load( function() {
@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
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;
/*
-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
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';
}
}
+.site-branding .site-title a {
+ background-image: url("../assets/the-molehole-logo.jpg");
+}
+
.site-footer {
padding-left: 4.236em;
padding-right: 4.236em;
}
-}
\ No newline at end of file
+}
887931
2429c1dde521031cd053886b15844bbf
-galleria/style.css
\ No newline at end of file
+themoleholeonline/style.css
\ No newline at end of file