We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48d9887 commit b807974Copy full SHA for b807974
inc/knowbase.class.php
@@ -65,9 +65,11 @@ public function showWizard() {
65
echo '<div id="plugin_formcreator_wizard_right" class="card">';
66
echo '<div class="card-body">';
67
68
- echo '<div id="plugin_formcreator_searchBar">';
69
- $this->showSearchBar();
70
- echo '</div>';
+ if (PluginFormcreatorEntityconfig::getUsedConfig('is_search_visible', Session::getActiveEntity()) == PluginFormcreatorEntityconfig::CONFIG_SEARCH_VISIBLE) {
+ echo '<div id="plugin_formcreator_searchBar">';
+ $this->showSearchBar();
71
+ echo '</div>';
72
+ }
73
echo '<div id="plugin_formcreator_wizard_forms">';
74
echo '</div>';
75
0 commit comments