Storefront add text to after featured products area
// Insert text below the Featured Products title
function add_featured_text_example() {
// Echo HTML
echo "<p>These are definitely our best products to consider!</p>";
}
add_action( 'storefront_homepage_after_featured_products_title' , 'add_featured_text_example' );