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.

242. How Opply Is Fixing Supply Chain Chaos for CPG Founders

241. Holiday Cash Flow Strategies with Brad Ebenhoeh of BELAY

240. Behind the Scenes at Little Spoon: Scaling a Perishable Supply Chain

239. Better Sour: Reimagining Candy with Global Flavors

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

$(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");}});});