diff --git a/.gitignore b/.gitignore
index 291372f..0f91f93 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,6 +6,7 @@ htdocs/*
!htdocs/wp-config-local-sample.php
htdocs/wp-content/*
+htdocs/wp-content/plugins/faq
!htdocs/wp-content/mu-plugins/
!htdocs/wp-content/plugins/
!htdocs/wp-content/themes/
diff --git a/composer.json b/composer.json
index 85326c9..9f3be4f 100644
--- a/composer.json
+++ b/composer.json
@@ -12,7 +12,8 @@
"wpackagist-plugin/menu-item-custom-fields": "~1.0.0",
"wpackagist-plugin/wp-rest-api-v2-menus": "~0.3.1",
"wpackagist-plugin/wp-mail-smtp": "~1.4.1",
- "wpackagist-plugin/cf7-field-validation": "~1.1.3"
+ "wpackagist-plugin/cf7-field-validation": "~1.1.3",
+ "nsp-code/taxonomy-terms-order": "~1.5.5",
},
"repositories": [
{
diff --git a/htdocs/wp-content/themes/lawcarta/assets/js/faqSearch.js b/htdocs/wp-content/themes/lawcarta/assets/js/faqSearch.js
new file mode 100644
index 0000000..4976296
--- /dev/null
+++ b/htdocs/wp-content/themes/lawcarta/assets/js/faqSearch.js
@@ -0,0 +1,5 @@
+document.addEventListener("DOMContentLoaded", function(event) {
+ $('.start-search').on('click', function(){
+ $('#search-form').submit();
+ });
+})
\ No newline at end of file
diff --git a/htdocs/wp-content/themes/lawcarta/footer.php b/htdocs/wp-content/themes/lawcarta/footer.php
index e8f1ea1..42bb98a 100644
--- a/htdocs/wp-content/themes/lawcarta/footer.php
+++ b/htdocs/wp-content/themes/lawcarta/footer.php
@@ -75,6 +75,7 @@ require_once 'inc/walker-nav-menu.php';
+