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.

217. Managing Cashflow and Working Capital with Samantha Abramson, Just Date

216. 3 Legged Stool – Brand, Retailer, Distributor

215. The Tech Stack to Grow Operations and Finance Your Business

214. 3 Secrets to High Converting Landing Pages

213. Founder Stories: Aaron Gatti, Brami

212. From a $3 Million Loss to running a $80 million Brand, Eric Skae of Carbone Fine Foods

211. Conversion Driven Packaging Design

210. AI For CPG Businesses

209. 5 Ways To Make The Most of Expo West

208. What You Need To Know about Insurance COIs

207. Optimize for Getting Investment

206. Founder Stories: Sprinkle Bites, Rachel Kane

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