diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8ace9152..5e404df8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.1.0" + ".": "6.1.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e1a607e..09b879f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +## [6.1.2](https://github.com/devuri/brisko/compare/6.1.1...6.1.2) (2025-03-04) + + +### Bug Fixes + +* nav update ([3b8ae79](https://github.com/devuri/brisko/commit/3b8ae79a1d2b88aad284c049e78c559e4f7d2a12)) + + +### Miscellaneous Chores + +* build ([14d8462](https://github.com/devuri/brisko/commit/14d846259fd6c471f6286fd01f137a3613322f21)) +* version bump 6.1.2 ([55cd66f](https://github.com/devuri/brisko/commit/55cd66fb8cabc8abe33648dbd00484fcb7bb6f04)) + +## [6.1.1](https://github.com/devuri/brisko/compare/6.1.0...6.1.1) (2025-03-04) + + +### Bug Fixes + +* `use_custom_styles` is true by default ([a3d8fbf](https://github.com/devuri/brisko/commit/a3d8fbfe697715de3c49098eb30f8242ab54ce1e)) + + +### Miscellaneous Chores + +* 6.1.1 ([569c3fb](https://github.com/devuri/brisko/commit/569c3fb634230b1c77cf69f948118eee0a9dd47e)) + ## [6.1.0](https://github.com/devuri/brisko/compare/6.0.1...6.1.0) (2025-03-04) diff --git a/README.md b/README.md index c22dc993..b9aa1160 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ Brisko provides an extensive set of customization options, allowing you to contr - Enable Block Header & Block Footer ## Custom Headers and Footers -- Supports Full Site Editing (FSE) for custom headers and footers +- Supports Full Site Editing (FSE) - Works with **Elementor Pro’s Theme Builder** ([Watch Tutorial](https://www.youtube.com/watch?v=Q7fyn0MMe_s)) - Compatible with **Header, Footer & Blocks Plugin** ([Download Plugin](https://wordpress.org/plugins/header-footer-elementor)) diff --git a/docs/code/classes/Brisko-Theme.html b/docs/code/classes/Brisko-Theme.html index d251999e..77dfb00e 100644 --- a/docs/code/classes/Brisko-Theme.html +++ b/docs/code/classes/Brisko-Theme.html @@ -152,7 +152,7 @@
Brisko WordPress Theme' ); diff --git a/readme.txt b/readme.txt index cc7bfeb3..7c720dc9 100644 --- a/readme.txt +++ b/readme.txt @@ -1,7 +1,7 @@ === Brisko === Contributors: icelayer Tested up to: 6.7 -Version: 6.0.1 +Version: 6.1.2 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready diff --git a/src/Setup/Styles.php b/src/Setup/Styles.php index 20962682..e8a4ba16 100644 --- a/src/Setup/Styles.php +++ b/src/Setup/Styles.php @@ -61,7 +61,7 @@ public function enqueue() } if ( ! is_brisko_hybrid_fse() ) { - if ( get_theme_mod( 'use_custom_styles', false ) ) { + if ( get_theme_mod( 'use_custom_styles', true ) ) { wp_enqueue_style( 'custom-styles' ); } diff --git a/src/Theme.php b/src/Theme.php index 06ebb67d..40f938c3 100644 --- a/src/Theme.php +++ b/src/Theme.php @@ -25,7 +25,7 @@ class Theme /** * Define Theme Version. */ - const VERSION = '6.0.1'; + const VERSION = '6.1.2'; protected $activate; protected $assets; diff --git a/style-rtl.css b/style-rtl.css index d85c73a4..a902dbbf 100644 --- a/style-rtl.css +++ b/style-rtl.css @@ -2,7 +2,7 @@ Theme Name: Brisko Author: Uriel Wilson Description: Brisko is a beautifully simple responsive and lightweight WordPress theme that is fast and optimized for WordPress page builders, you can use it as a foundation to build versatile layouts using modern page builders like Elementor, Gutenberg etc. this theme is suitable for personal blogs, business, agency, restaurant, simple blog, life coach, portfolio, charity, and more. Brisko can be extended with plugins or child themes using any of the many included actions. -Version: 6.0.1 +Version: 6.1.2 Tested up to: 6.0 Requires PHP: 7.0 Text Domain: brisko diff --git a/style.css b/style.css index 689aa938..71e50517 100644 --- a/style.css +++ b/style.css @@ -2,7 +2,7 @@ Theme Name: Brisko Author: uriel Description: Brisko is a beautifully simple responsive and lightweight WordPress theme that is fast and optimized for WordPress page builders, you can use it as a foundation to build versatile layouts using modern page builders like Elementor, Gutenberg etc. this theme is suitable for personal blogs, business, agency, restaurant, simple blog, life coach, portfolio, charity, and more. Brisko can be extended with plugins or child themes using any of the many included actions. -Version: 6.0.1 +Version: 6.1.2 Tested up to: 6.0 Requires PHP: 7.0 Text Domain: brisko diff --git a/template-parts/nav.php b/template-parts/nav.php index 96f40e9d..288b9a5c 100644 --- a/template-parts/nav.php +++ b/template-parts/nav.php @@ -3,18 +3,27 @@ * Template part for displaying Navigation menu. */ -$navigation = new Brisko\Nav(); +if ( get_theme_mod( 'use_bootstrap_navbar' ) ) { + $navigation = new Brisko\Nav(); -?> - - -
+