Display the search form from the Astra theme on the shop page in WooCommerce on child sites.
Snippet Type
Execute on Child Sites
Snippet
add_action( 'woocommerce_before_main_content', 'astra_display_search_form_on_shop_page', 5 );
function astra_display_search_form_on_shop_page() {
if ( is_shop() ) {
echo astra_get_search_form();
}
}