From a2a2fb2f5ed0a94889cdda0c78d624036a1cfdc4 Mon Sep 17 00:00:00 2001 From: Alex S <17275120+AlexGStapleton@users.noreply.github.com> Date: Tue, 7 Mar 2023 02:10:21 +1300 Subject: [PATCH 1/7] Remove Build Contributors --- build-config.js | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/build-config.js b/build-config.js index fc58833..09f9352 100644 --- a/build-config.js +++ b/build-config.js @@ -1,22 +1,6 @@ module.exports = { slug: 'siteorigin-north', jsMinSuffix: '.min', - contributors: { - src: [ - '{**/*.js,**/*.php,**/*.less,**/*.scss}', - '!{build,build/**}', // Ignore build/ submodule - '!{inc/settings,inc/settings/**}', // Ignore settings submodule - '!{inc/panels-lite,inc/panels-lite/**}', // Ignore panels-lite submodule - '!{languages,languages/**}', // Ignore languages - '!{tests,tests/**}', // Ignore tests/ and contents if any - '!{tmp,tmp/**}' // Ignore tmp/ and contents if any - ], - format: 'php', - skipCommits: [], - excludeEmails: [ - '77e88891e4965161953320ec66623cbc', // Remove greg@siteorigin.com - ] - }, version: { src: [ 'functions.php', From 6706e5538c645de370f72c6503ffc6ab20c01efa Mon Sep 17 00:00:00 2001 From: Alex S <17275120+AlexGStapleton@users.noreply.github.com> Date: Thu, 9 Mar 2023 16:30:19 +1300 Subject: [PATCH 2/7] Add Logo Booster Teaser --- inc/settings.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/inc/settings.php b/inc/settings.php index fdd5ae3..36f745b 100644 --- a/inc/settings.php +++ b/inc/settings.php @@ -17,6 +17,14 @@ function siteorigin_north_settings_init() { 'type' => 'media', 'label' => __( 'Retina Logo', 'siteorigin-north' ), 'description' => __( 'A logo for use on high pixel density displays. Must be used in addition to standard logo and be exactly double the size.', 'siteorigin-north' ), + 'teaser' => __( + sprintf( + 'Enhance your SiteOrigin theme logo functionality with the %sLogo Booster addon%s. Add an alternative logo on any page; upload a sticky logo to display on scroll.', + '', + '' + ), + 'siteorigin-north' + ), ), 'site_title' => array( 'type' => 'checkbox', From 7468387a5d61dc7ca2952b54b1845fe3caec3470 Mon Sep 17 00:00:00 2001 From: Alex S <17275120+AlexGStapleton@users.noreply.github.com> Date: Thu, 16 Mar 2023 06:20:45 +1300 Subject: [PATCH 3/7] Use SiteOrigin Breadcrumbs --- inc/template-tags.php | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/inc/template-tags.php b/inc/template-tags.php index a176074..47efcac 100644 --- a/inc/template-tags.php +++ b/inc/template-tags.php @@ -474,21 +474,7 @@ function siteorigin_north_display_icon( $type ) { * Display's breadcrumbs supported by Breadcrumb NavXT, Rank Math, and Yoast SEO. */ function siteorigin_north_breadcrumbs() { - if ( function_exists( 'bcn_display' ) ) { - ?> -
- ', '' ); - } elseif ( function_exists( 'rank_math_the_breadcrumbs' ) ) { - ?> - - Date: Thu, 16 Mar 2023 13:20:42 +1300 Subject: [PATCH 4/7] Logo Booster Teaser: Switch to Array --- inc/settings.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/inc/settings.php b/inc/settings.php index 36f745b..aea10c9 100644 --- a/inc/settings.php +++ b/inc/settings.php @@ -17,13 +17,15 @@ function siteorigin_north_settings_init() { 'type' => 'media', 'label' => __( 'Retina Logo', 'siteorigin-north' ), 'description' => __( 'A logo for use on high pixel density displays. Must be used in addition to standard logo and be exactly double the size.', 'siteorigin-north' ), - 'teaser' => __( - sprintf( - 'Enhance your SiteOrigin theme logo functionality with the %sLogo Booster addon%s. Add an alternative logo on any page; upload a sticky logo to display on scroll.', - '', - '' + 'teaser' => array( + 'text' => __( + sprintf( + 'Enhance your SiteOrigin theme logo functionality with the %sLogo Booster addon%s. Add an alternative logo on any page; upload a sticky logo to display on scroll.', + '', + '' + ), + 'siteorigin-north' ), - 'siteorigin-north' ), ), 'site_title' => array( From b3dd45917efad87e4ecc7bcd0eb3e05864dc3e18 Mon Sep 17 00:00:00 2001 From: Andrew Misplon