Hi there
Apologies for the delayed response.
It will be working out of the box in future plugin releases, but at this moment you can use the following code. Add the following code in the child theme’s functions.php file.
add_filter('astra_get_search_form', function ($form) {
if (defined('DGWT_WCAS_NAME')) {
$form = '<div class="search-form">';
$form .= do_shortcode('[wcas-search-form]');
$form .= '</div>';
}
return $form;
});
add_filter('wp_head', function () {
if (defined('DGWT_WCAS_NAME')) {
?>
<style>
.ast-dropdown-active .search-form {
padding-left: 0 !important;
}
.ast-dropdown-active .ast-search-icon {
display: none !important;
}
</style>
<?php
}
});