Startup to Scale Podcast

Your resource for growing your food, beverage, and CPG company from a young company to a successful business. New episodes every week.

238. From Chef to Quinoa Milk Pioneer: How Kyle Stoulil is Shaping the Future of Plant-Based Dairy

237. Innovation that Wins: Smarter Risk-Taking & Packaging Insights with Christy Lebor of Smashbrand

236. Pitch Perfect: How to Fund Your Startup with Kat Weaver, Founder of Power to Pitch

235. Founder Stories: Loopini – Damiano Messineo

234. Scaling Sweet Success: How Clio Snacks Grew Nationwide Distribution

233. Go Solo or Find a Cofounder? Choosing Your Founding Path

232. Founder Stories: PSquared – Morgan Rucker and Olivia Stevermer

231. How TÖST Built Smarter Operational Systems

230. The New Way to get PR for CPG Brands

229. How to Drive Velocity in Whole Foods

228. Building a Brand While Raising a Baby: Minky Muffins’ Journey to Product-Market Fit

227. Stop Selling Ingredients, Start Selling Solutions How to Rethink Your CPG Brand Messaging

$(document).ready(function() {console.log("done");// Iterar sobre cada .podcast-wrapper$('.podcast-wrapper').each(function() {// Encontrar el h2 dentro de .podcast-titlevar $podcastTitle = $(this).find('.podcast-title h2');var titleText = $podcastTitle.text();// Utilizar regex para extraer el número del episodiovar episodeNumberMatch = titleText.match(/^(\d+)\.\s*(.*)$/);if (episodeNumberMatch) {var episodeNumber = episodeNumberMatch[1];var newTitle = episodeNumberMatch[2];// Establecer el nuevo título sin el número del episodio$podcastTitle.text(newTitle);// Encontrar el h2 dentro de .podcast-episode y establecer el número del episodio$(this).find('.podcast-episode h2').text('Episode ' + episodeNumber);console.log("done");}});});