From f4c9bd8330da3e113eda93d5b7e39fa72eccaaf2 Mon Sep 17 00:00:00 2001 From: Andrew Misplon Date: Sat, 5 Jan 2019 14:42:46 +0200 Subject: [PATCH 1/3] Add a class of custom-logo to the Branding logo * Only exclude `custom-logo` from the global `img` selector. --- inc/template-tags.php | 10 +++++----- sass/elements/_elements.scss | 10 +++++----- style.css | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/inc/template-tags.php b/inc/template-tags.php index dcf0ab14..580d397f 100644 --- a/inc/template-tags.php +++ b/inc/template-tags.php @@ -7,14 +7,14 @@ * @package siteorigin-north */ -if ( ! function_exists( 'siteorigin_north_display_logo' ) ): +if ( ! function_exists( 'siteorigin_north_display_logo' ) ) : /** * Display the logo or site title */ function siteorigin_north_display_logo() { $logo = siteorigin_setting( 'branding_logo' ); if ( ! empty( $logo ) ) { - $attrs = apply_filters( 'siteorigin_north_logo_attributes', array() ); + $attrs = apply_filters( 'siteorigin_north_logo_attributes', array( 'class' => 'custom-logo' ) ); ?> + if ( siteorigin_setting( 'icons_close_search' ) ) : ?> Date: Sun, 6 Jan 2019 10:27:44 +0200 Subject: [PATCH 2/3] Correct shop sidebar widget closing header tag --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 9a12d53e..08464492 100644 --- a/functions.php +++ b/functions.php @@ -228,7 +228,7 @@ function siteorigin_north_widgets_init() { 'before_widget' => '', 'before_title' => '

', - 'after_title' => '

', + 'after_title' => '', ) ); } From dd967632ac28b5da148dfc34c794893c93a0ab64 Mon Sep 17 00:00:00 2001 From: Andrew Misplon Date: Mon, 7 Jan 2019 10:44:47 +0200 Subject: [PATCH 3/3] Changelog update --- readme.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/readme.txt b/readme.txt index e02f91ef..639ea842 100644 --- a/readme.txt +++ b/readme.txt @@ -97,6 +97,10 @@ Original design files are available on [Google Drive](https://drive.google.com/f == Changelog == += 1.6.5 - 07 January 2018 = +* Added a class of `custom-logo` to the Branding logo. Only excluded `custom-logo` from the global `img` selector. +* Corrected WooCommerce shop sidebar widget closing header tag. + = 1.6.4 - 31 December 2018 = * Resolved Site Identity Custom Logo not being being replaced by Retina Logo when added. * Excluded the logo from the global img selector.