Fix product search block not actually working.

This commit is contained in:
Nestor Soriano 2021-07-19 16:51:13 +02:00
parent 88e8ea5dc2
commit bc7f9edb11
No known key found for this signature in database
GPG Key ID: 08110F3518C12CAD
1 changed files with 10 additions and 0 deletions

View File

@ -1266,6 +1266,16 @@ if ( ! function_exists( 'woocommerce_product_archive_description' ) ) {
$allowed_html = array_merge(
$allowed_html,
array(
'form' => array(
'action' => true,
'accept' => true,
'accept-charset' => true,
'enctype' => true,
'method' => true,
'name' => true,
'target' => true,
),
'input' => array(
'type' => true,
'id' => true,