Forum breadcrumbs - You are here:SupportWordPress&WooCommerce Plugins: BEAR - WooCommerce Bulk Editor and Products Manager Professional (old name is WOOBE)Bigger Search Bar and Clear searc …
You need to log-in to create request (topic) to the support
Bigger Search Bar and Clear search button
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page pleaseIf you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.
danielandri(@danielandri)
1 Post
Customers
March 6, 2026, 17:15
Quote from danielandri on March 6, 2026, 17:15Hello
Can we please get a bigger search bar? It is so small!
Would improve the workflow and also a clear search button would be good also.
Best regards
Daniel
Hello
Can we please get a bigger search bar? It is so small!
Would improve the workflow and also a clear search button would be good also.
Best regards
Daniel
Alex Dovlatov(@alexdev)
746 Posts
March 9, 2026, 13:06
Quote from Alex Dovlatov on March 9, 2026, 13:06Hello Daniel
Test next solution please - into file functions.php add next code:
add_action('admin_head', 'woobe_search_input_focus_styles'); function woobe_search_input_focus_styles() { // Only load on BEAR plugin pages $screen = get_current_screen(); if (!$screen || strpos($screen->id, 'woobe') === false) { return; } ?> <style> /* Wrap input in relative container for X button positioning */ .woobe-search-wrap { position: relative; display: flex; align-items: center; } .woobe-search-wrap input[name="woobe_filter_form_tools_value"] { width: 99% !important; padding-right: 28px !important; transition: width 0.3s ease; } /* X clear button - hidden by default */ .woobe-search-clear { position: absolute; right: 6px; cursor: pointer; font-size: 16px; line-height: 1; color: #999; display: none; background: none; border: none; padding: 0; } .woobe-search-clear:hover { color: #333; } /* Show X when wrap has focus-within */ .tools_panel_filter-unit-wrap:focus-within .woobe-search-clear { display: block; } /* Hide sibling cols when input is focused */ .tools_panel_filter-unit-wrap:focus-within .col-lg-2 { display: none; } .tools_panel_filter-unit-wrap:focus-within .col-lg-6 { width: 100%; } </style> <script> document.addEventListener('DOMContentLoaded', function () { const input = document.querySelector('input[name="woobe_filter_form_tools_value"]'); const tableWrapper = document.getElementById('advanced-table_wrapper'); if (!input) return; // Wrap input in relative container and inject X button const wrap = document.createElement('div'); wrap.className = 'woobe-search-wrap'; input.parentNode.insertBefore(wrap, input); wrap.appendChild(input); const clearBtn = document.createElement('button'); clearBtn.className = 'woobe-search-clear'; clearBtn.innerHTML = '×'; clearBtn.title = 'Clear search'; wrap.appendChild(clearBtn); // X button: clear input and return focus clearBtn.addEventListener('mousedown', function (e) { input.value = ''; input.blur(); // manually trigger blur = lose focus = CSS resets input.dispatchEvent(new Event('input', {bubbles: true})); }); if (!tableWrapper) return; // Hide/show table wrapper on focus/blur input.addEventListener('focus', function () { tableWrapper.style.display = 'none'; }); input.addEventListener('blur', function () { tableWrapper.style.display = ''; }); }); </script> <?php }After some tests it could be added into next versionĀ of the plugin
Hello Daniel
Test next solution please - into file functions.php add next code:
add_action('admin_head', 'woobe_search_input_focus_styles');
function woobe_search_input_focus_styles() {
// Only load on BEAR plugin pages
$screen = get_current_screen();
if (!$screen || strpos($screen->id, 'woobe') === false) {
return;
}
?>
<style>
/* Wrap input in relative container for X button positioning */
.woobe-search-wrap {
position: relative;
display: flex;
align-items: center;
}
.woobe-search-wrap input[name="woobe_filter_form_tools_value"] {
width: 99% !important;
padding-right: 28px !important;
transition: width 0.3s ease;
}
/* X clear button - hidden by default */
.woobe-search-clear {
position: absolute;
right: 6px;
cursor: pointer;
font-size: 16px;
line-height: 1;
color: #999;
display: none;
background: none;
border: none;
padding: 0;
}
.woobe-search-clear:hover {
color: #333;
}
/* Show X when wrap has focus-within */
.tools_panel_filter-unit-wrap:focus-within .woobe-search-clear {
display: block;
}
/* Hide sibling cols when input is focused */
.tools_panel_filter-unit-wrap:focus-within .col-lg-2 {
display: none;
}
.tools_panel_filter-unit-wrap:focus-within .col-lg-6 {
width: 100%;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function () {
const input = document.querySelector('input[name="woobe_filter_form_tools_value"]');
const tableWrapper = document.getElementById('advanced-table_wrapper');
if (!input)
return;
// Wrap input in relative container and inject X button
const wrap = document.createElement('div');
wrap.className = 'woobe-search-wrap';
input.parentNode.insertBefore(wrap, input);
wrap.appendChild(input);
const clearBtn = document.createElement('button');
clearBtn.className = 'woobe-search-clear';
clearBtn.innerHTML = '×';
clearBtn.title = 'Clear search';
wrap.appendChild(clearBtn);
// X button: clear input and return focus
clearBtn.addEventListener('mousedown', function (e) {
input.value = '';
input.blur(); // manually trigger blur = lose focus = CSS resets
input.dispatchEvent(new Event('input', {bubbles: true}));
});
if (!tableWrapper)
return;
// Hide/show table wrapper on focus/blur
input.addEventListener('focus', function () {
tableWrapper.style.display = 'none';
});
input.addEventListener('blur', function () {
tableWrapper.style.display = '';
});
});
</script>
<?php
}
After some tests it could be added into next versionĀ of the plugin
