Fix product search block not actually working.
This commit is contained in:
parent
88e8ea5dc2
commit
bc7f9edb11
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue