to get SSL lock for checkout page
authorSteve Sutton <steve@gaslightmedia.com>
Thu, 5 May 2016 18:51:18 +0000 (14:51 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Thu, 5 May 2016 18:51:18 +0000 (14:51 -0400)
sidebar.php [new file with mode: 0644]
style.css

diff --git a/sidebar.php b/sidebar.php
new file mode 100644 (file)
index 0000000..f09df15
--- /dev/null
@@ -0,0 +1,22 @@
+<?php
+/**
+ * The sidebar containing the main widget area.
+ *
+ * @package storefront
+ */
+
+if ( ! is_active_sidebar( 'sidebar-1' ) ) {
+    return;
+}
+?>
+
+<div id="secondary" class="widget-area" role="complementary">
+    <?php 
+    ob_start();
+    dynamic_sidebar( 'sidebar-1' );
+    $out = ob_get_contents();
+    $out = str_replace( 'img src="http://', 'img src="//', $out );
+    ob_end_clean();
+    echo $out;
+    ?>
+</div><!-- #secondary -->
index efbacab..7728035 100644 (file)
--- a/style.css
+++ b/style.css
@@ -4,7 +4,7 @@ Description:    Theme from Galleria for The Mole Hole
 Author:                        Gaslight Media
 Author URI:            http://www.gaslightmedia.com
 Template:              storefront
-Version:               1.0.1
+Version:               1.0.2
 */
 /* =themoleholeonline styles starts here
 -------------------------------------------------------------- */