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.

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

226. Tariffs, Deductions, and Margins: Stress Testing Your CPG Business

225. Accounting for CPG Food and Beverage Brands

224. Building a Modern Spritz Brand from Scratch with St. Spritz

223. Selling on Amazon For CPG Brands

222. How to Fund Large Retailer Orders

221. The Story of Uncle Matt’s Organic Juice

220. Financial Foundations to Weather Tariffs and any Economic Challenge

219. Behind The Scenes of Coconut Cult’s Operations

218. Succeeding in Sprouts Market

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