Hi there @siutek!
Thank you for contacting us!
I understand you are seeing a blank link in the Storefront handheld footer bar due to which you are getting SEO warning in Google Page Speed Insights.
You can replace href with any value such as #na
by defining the function below in your child theme’s function.php file:
1. Create a child theme for your Storefront theme: https://developer.www.ads-software.com/themes/advanced-topics/child-themes/
2. In your child theme’s functions.php file, paste the code below:
function storefront_handheld_footer_bar_search() {
echo '<a href="#na">' . esc_attr__( 'Search', 'storefront' ) . '</a>';
storefront_product_search();
}
I hope this helps!