July 2026 Summaries
27 posts from Webflow
Filter
Month:
Year:
Post Summaries
Back to Blog
Victor's principle that creators should have an immediate connection to what they create has profoundly influenced Webflow, a company founded on the idea of designing for the web through direct manipulation rather than traditional coding. Despite initial success in enabling non-engineers to harness web design, Webflow's abstraction layer inadvertently distanced users from their creations, highlighting a gap between visual design and actual code. The emergence of coding agents capable of interacting with code without requiring users to write it has paved the way for Webflow to rebuild its platform around code as the source of truth, bridging the gap between design and artifact. This shift aims to unify the visual designer and AI interactions with the real code, allowing for a more integrated, team-oriented approach to web development. As Webflow prepares to unveil this evolution at their upcoming conference, they emphasize that this transformation aligns with their long-standing vision and commitment to empowering creators with a direct and honest connection to their web creations.
Jul 28, 2026
1,974 words in the original blog post.
Agentic marketing workflows leverage AI to autonomously make dynamic, real-time decisions for engaging with online audiences, moving beyond simple rule-based actions to more sophisticated goal-based directives such as increasing conversions or gaining more contact form submissions. These AI agents harness context and personalization to nurture leads, interact directly with website visitors, and identify opportunities through real-time site metrics tracking. The core of this system includes tools and integrations, an agent core for orchestration, governance documents, prompt templates, and memory systems to support its learning and action-taking capabilities. Agentic workflows offer benefits like personalization at scale, automated campaign optimization, enhanced customer service, and improved answer engine optimization (AEO), allowing AI to act as a sales and customer service representative. Implementing an agentic marketing workflow involves defining the AI agent's capabilities and limitations, configuring it using platforms like Claude or Codex, and following guidance for effective deployment in tasks such as lead generation or automated messaging.
Jul 27, 2026
694 words in the original blog post.
As websites grow, effective web governance becomes crucial in managing increased complexity and ensuring that marketing campaigns are efficient and compliant with standards. Governance in a marketing context involves clearly defining decision-making ownership, updating processes, and standards that pages must meet before going live, which helps align content and branding while adhering to legal and accessibility guidelines. A structured governance model, often organized around the 'four Ps'—People, Purpose, Process, and Performance—provides clarity and efficiency. 'People' defines roles across teams, 'Purpose' aligns content with business goals, 'Process' establishes repeatable workflows for content creation and approval, and 'Performance' measures how well the website and governance model meet objectives. This approach prevents delays, such as scattered approvals, and enhances site performance by ensuring everyone works toward common goals, ultimately supporting content marketing metrics and operational efficiency.
Jul 27, 2026
574 words in the original blog post.
AI-powered search tools, such as Perplexity and Google's AI Overviews, are changing how search visibility works by prioritizing content designed for answer engine optimization (AEO), which involves structuring website content to be easily extracted as direct responses by AI systems. Unlike traditional SEO, which focuses on helping search engines index pages, AEO emphasizes organizing content so AI can quickly pull credible answers, similar to featured snippets in traditional search engines. Effective AEO involves presenting a direct answer at the top, followed by detailed explanations and supporting information to enhance both AI and human comprehension. This approach uses a pyramid structure: starting with a concise answer, then expanding into more complex details and context, which helps AI understand relationships between ideas and generate more accurate responses. AEO-friendly content is characterized by descriptive, question-led headlines, scannable formats like tables and FAQs, and structured data to signal trust and context.
Jul 27, 2026
756 words in the original blog post.
Integrating authentication and payment systems into a Webflow Cloud app involves using Auth0 for session-based authentication and Stripe Checkout for handling payments, with the entire stack running seamlessly within Webflow's infrastructure. This approach avoids the complexities and potential failures associated with implementing such systems across multiple services and environments. The integration process requires setting up a Webflow workspace with Cloud access, an Auth0 tenant, a Stripe account, the Webflow CLI, and Node.js 22.13.0 or higher. The guide details a six-step process covering project initialization, client setup for Auth0 and Stripe, middleware and route protection, Stripe Checkout, webhook handling using constructEventAsync for security, and production deployment configuration. It emphasizes the importance of precise environment variable management and webhook signature verification to ensure the integration's reliability. Additionally, it highlights the benefits of a unified deployment pipeline and environment variable management, simplifying the process of troubleshooting and scaling the application.
Jul 27, 2026
3,842 words in the original blog post.
This guide outlines how to implement an Elasticsearch autocomplete feature on Webflow Cloud by extending an existing full-text search setup. It details the process of migrating an index to include the `search_as_you_type` field mapping, re-indexing content, and creating a dedicated autocomplete Route Handler. The implementation requires an Elastic Cloud cluster, a Webflow Cloud Next.js app with Route Handler support, and API keys for both read and write operations. The guide emphasizes the importance of using a debounced, abort-controlled input to prevent stale suggestions on the frontend. It also addresses common issues like index mismatches, CORS errors, and the need for explicit mappings to ensure the correct field type. Additionally, it provides guidance on environment variable management and deployment practices to ensure a smooth integration of autocomplete functionality with Webflow CMS content, while highlighting potential pitfalls and troubleshooting strategies for common errors.
Jul 26, 2026
3,192 words in the original blog post.
Webflow Cloud apps, running as Cloudflare Workers, require robust error tracking and monitoring to address uncaught exceptions effectively, where a combination of Sentry and Datadog provides comprehensive observability. While Sentry captures unhandled exceptions with detailed stack traces, Datadog facilitates continuous operational visibility through structured logs from Route Handlers. This setup involves configuring Sentry with Next.js and leveraging Datadog's HTTP log intake API to accommodate Webflow Cloud's edge runtime. The guide emphasizes the importance of setting up a Webflow Cloud project with a Next.js app, ensuring the correct integration of Sentry and Datadog, including obtaining necessary API keys and configuring environment variables. Additionally, it provides troubleshooting tips for common issues such as mismatched region settings and missing instrumentation exports, and suggests extending observability by adding user context to errors and utilizing correlation IDs for comprehensive request tracking.
Jul 26, 2026
1,481 words in the original blog post.
Webflow Cloud, built on Cloudflare Workers, offers a unique environment for building applications that require specific configurations for authentication due to its V8 isolate environment that doesn't fully support Node.js APIs. In constructing a Webflow Cloud app with protected areas like a public landing page, a member dashboard, and an admin panel, the guide outlines how to integrate Auth0's RBAC (Role-Based Access Control) using the jose library for JWT verification and Cloudflare-specific configurations. The process involves setting up an Auth0 tenant, configuring roles, and using a series of route handlers to manage login, callback, and logout processes, with JWT verification and role enforcement handled natively within the application. Critical steps include setting up Auth0 environment variables in Webflow Cloud, creating necessary route handlers for OAuth 2.0 flows, and enforcing role-based access both in middleware and at the data access layer to ensure secure operations. The guide emphasizes the importance of verifying tokens at multiple layers to prevent unauthorized access and outlines potential troubleshooting steps for common issues. With RBAC successfully implemented, the next step involves leveraging Auth0 Organizations to enable multi-tenant applications, enhancing the app's capability to handle diverse user groups and custom branding.
Jul 26, 2026
2,761 words in the original blog post.
Supabase Auth integration with Webflow Cloud facilitates server-validated sessions and custom JWT claims using a PostgreSQL-backed system, ideal for projects requiring direct control over authentication tables. This guide outlines the steps to wire up email/password authentication in a Webflow Cloud app, which involves creating browser and server clients, adding session middleware, building Route Handlers for sign-up, sign-in, and sign-out processes, and linking Webflow forms on the front end. Essential requirements include a Webflow Cloud project, a Supabase project, and Node.js 22.13.0 or higher. Supabase Auth operates on the free tier, and the integration uses the packages @supabase/supabase-js and @supabase/ssr for operations and cookie-based session management, ensuring seamless communication between server and client. The session middleware validates and refreshes the auth token on every request, while Route Handlers manage the lifecycle of user sessions. The guide also covers setting up email confirmation routes, protecting member content with getClaims(), and using Row-Level Security in Supabase to restrict data access.
Jul 26, 2026
2,445 words in the original blog post.
Creating a scored quiz within the Webflow community is streamlined by integrating a React Client Component in a Webflow Cloud Next.js app, with quiz questions managed through Webflow CMS to allow editors to update content without coding. This approach leverages Webflow CMS for storing questions, utilizes a useReducer hook for managing quiz state, and displays scores and explanations on a results screen. The quiz architecture efficiently separates concerns, with the server fetching questions and the client handling quiz logic, eliminating mid-quiz client-server interactions. Optional completion logging to a Webflow Cloud Key Value Store supports analytics, while the guide emphasizes the ease of content updates via CMS over hard-coded JSON, offering a scalable and maintainable solution for building interactive quizzes.
Jul 26, 2026
2,265 words in the original blog post.
Webflow's native site search is limited in its filtering capabilities, prompting users to enhance their search functionality by integrating Algolia, which provides a faceted, instant-search layer on top of Webflow CMS content. By utilizing a pattern involving react-instantsearch for the search UI, mounted in a Next.js Client Component, and a Route Handler for bulk indexing Webflow CMS content, users can create a robust search interface. This setup requires a Webflow Cloud Next.js app, an Algolia account, and a Webflow CMS collection with searchable content. Key steps include configuring the Algolia index, indexing Webflow CMS content via the Data API, rendering a faceted search UI with filtering and pagination, and setting up webhooks for real-time index synchronization as content changes. The architecture is divided into two layers: the indexing layer, which runs server-side using the Admin API key, and the search UI layer, which operates in the browser using only the search-only key. This integration enhances the search experience by enabling visitors to filter results by various attributes and improving control over typo tolerance and relevance.
Jul 26, 2026
2,418 words in the original blog post.
Integrating Kajabi courses with Webflow Cloud allows for a streamlined and controlled process, transforming static embeds into dynamic applications. This integration leverages Kajabi's Public API and Webflow Cloud's server-side capabilities via Cloudflare Workers, enabling secure API calls and handling credentials effectively. The guide outlines a step-by-step process, including creating an API key, authenticating with Kajabi, listing courses, verifying member access, granting course access post-purchase, and maintaining synchronization through webhooks. These steps ensure that course access and membership status are accurately managed across both platforms, whether purchases occur on Webflow or directly through Kajabi. The integration emphasizes security and efficiency by keeping sensitive data server-side, utilizing structured API requests, and implementing robust error handling and re-verification processes. The setup provides a foundation for further enhancements, such as building member portals and optimizing media delivery, enhancing the user experience while maintaining robust access control.
Jul 25, 2026
3,930 words in the original blog post.
Generating a branded invoice PDF using Webflow Cloud involves deploying a Next.js app, using a SQLite database for invoice records, and rendering the PDF on the Workers runtime without an external print service. The process requires a Webflow Cloud app running Next.js 15 or higher, a SQLite database binding, and a pure-JavaScript PDF library such as pdf-lib, which is compatible with the edge environment. The app development follows a sequence of steps: setting up a project, adding a database and defining a schema, creating route handlers for invoice creation and listing, and generating PDFs dynamically. The system relies on integer cents for monetary values to prevent floating-point errors. The development and deployment process is facilitated by GitHub integration and Webflow CLI, and the app can be extended with payment processing, email delivery, and user authentication features.
Jul 25, 2026
2,914 words in the original blog post.
Integrating Algolia search and Cloudinary media optimization into a Webflow Cloud app enhances the functionality of CMS collections by providing fast search capabilities and optimized image handling tailored for various devices. The process involves setting up an Algolia account to manage search indices and a Cloudinary account for media transformations, both of which offer free tiers suitable for development and low-traffic production. The integration uses Webflow Cloud's Workers runtime, where Algolia's JavaScript client facilitates search operations without altering the HTTP layer, and Cloudinary's media transformations occur at the CDN edge. A sync Route Handler updates Algolia with CMS content, while a search proxy Route Handler securely manages search queries. For media, Cloudinary's URL-based transformations and upload Route Handlers streamline image optimization and storage. The guide also addresses common issues and troubleshooting tips, such as ensuring correct environment variable configurations and handling browser compatibility for modern image formats.
Jul 25, 2026
2,264 words in the original blog post.
The text outlines the process of integrating two-factor SMS verification into a Webflow Cloud application using Twilio, emphasizing the importance of server-side operations to ensure security and reliability. It describes a step-by-step guide that involves setting up a Twilio Verify service, creating a Twilio client compatible with Cloudflare Workers, and building route handlers for sending and verifying SMS codes. The integration ensures that sensitive operations, such as generating and verifying codes, occur server-side without exposing credentials or raw data to the browser. The document also highlights key considerations, like managing verification attempts and ensuring correct phone number formats, to prevent potential security vulnerabilities and operational issues. Additionally, it suggests potential extensions of this setup, such as step-up verification for high-risk actions, and encourages exploring further integrations of Twilio's SMS and voice features within Webflow Cloud.
Jul 25, 2026
3,104 words in the original blog post.
Building a personality assessment tool on a Webflow site using Webflow Cloud and Next.js offers a secure and integrated approach, allowing developers to keep the scoring logic private and data ownership intact. By employing a server-side architecture with SQLite databases and Key Value stores, the tool can securely store and process user responses, as demonstrated through the implementation of the Big Five (OCEAN) assessment. This method contrasts with third-party embeds or client-side scripts, which either sacrifice data control or expose scoring keys to users. The guide outlines a comprehensive process for setting up the assessment, from defining questions and scoring keys to managing storage and generating AI-based results, all while ensuring data privacy and integrity. The approach leverages the Webflow Cloud Workers runtime for seamless integration, enabling a robust and scalable solution that aligns with best practices in data handling and application deployment on the same domain as the Webflow site, eliminating the need for external backend services.
Jul 25, 2026
3,735 words in the original blog post.
Webflow's MCP 2.0 release introduces significant enhancements that enable AI agents to effectively manage web design tasks, including building components, modifying design tokens, and interfacing with CMS systems, all without the previous requirement of a bridge app for most actions. This update allows users to hand off complex design tasks to AI agents, which can now create and adjust design elements based on CSS variables, propose and preview color palettes, and build components from screenshots by analyzing existing site structures. The new system also includes an "Instructions" section where users can define rules and skills to ensure agents follow specific design guidelines and workflows, making them more efficient. Additionally, MCP 2.0 offers features like reading and managing forms, assets, and code, as well as providing insights into site analytics, thereby broadening the scope of tasks that AI agents can perform to streamline web development processes.
Jul 23, 2026
1,184 words in the original blog post.
Webflow MCP 2.0 is designed to enhance agentic workflows by integrating with AI tools like Claude and ChatGPT, allowing users to design, build, and manage websites efficiently while maintaining control, governance, and brand consistency. The platform supports the full context of design systems and CMS data, enabling rapid updates and parallel workflows without sacrificing brand integrity. Essential features include Agent Instructions for centralized context, performance insights via Webflow Analyze, and secure collaboration through branch-based development and strict access controls. MCP 2.0 aims to facilitate seamless collaboration between humans and AI agents, ensuring that website development aligns with organizational goals and compliance standards, and is available at no additional cost on all Webflow site plans.
Jul 21, 2026
1,151 words in the original blog post.
In early 2025, Webflow embarked on developing its MCP server to enhance agent interactions with APIs, learning that traditional developer APIs, which rely on human interpretation and manual handling, are not well-suited for autonomous agents. Initially, Webflow faced challenges with inefficiencies and failures due to the low-level nature of developer APIs, prompting a shift towards designing task-oriented, intent-driven tools that simplify agent workflows by reducing complexity and decision-making burden. This led to the creation of a layered tool architecture and filesystem abstractions that organize capabilities into domain-level tools and provide a more structured and navigable environment, allowing agents to operate more effectively. Additionally, Webflow's approach involved improving observability to better understand agent behavior and execution patterns, which revealed the need for a skills layer to enhance the agents' ability to perform complex tasks. The focus on making Webflow legible and operationally reliable for autonomous systems has driven the development of infrastructure, tool surface design, observability, and distribution patterns, ultimately aiming to create a comprehensive environment that supports both the flexibility needed by human users and the operational reliability required by agents.
Jul 21, 2026
2,203 words in the original blog post.
Webflow has redefined its approach to security by integrating AI into its detection and response workflows, eliminating the need for a traditional Security Operations Center (SOC). Instead of relying on a team of analysts, a small group of security engineers manages the entire lifecycle of security incidents, leveraging AI to enhance efficiency and reduce the cognitive load on engineers. AI is used to automate the initial stages of alert triage by pre-assembling context and filtering out false positives, allowing engineers to engage with a more complete picture. Additionally, AI assists in post-incident analysis by synthesizing incident data to produce comprehensive documentation and actionable insights, which are then validated by engineers to ensure accuracy and relevance. Webflow emphasizes the importance of having a solid foundational system, with clean data pipelines and well-documented processes, to effectively harness AI's capabilities. This approach has enabled Webflow's security team to operate at a higher level of efficiency without increasing headcount, highlighting the potential of AI to augment rather than replace human judgment in security operations.
Jul 17, 2026
1,638 words in the original blog post.
Search Engine Optimization (SEO) was traditionally the domain of specialists focused on keywords and rankings to drive website traffic and revenue, often unnoticed by the broader company unless issues arose. However, the rise of Large Language Models (LLMs) is transforming the buyer journey, as evidenced by 51% of marketers surveyed by G2 indicating a preference for starting shortlists with answer engines over Google, and 69% altering their software purchases due to LLMs. Consequently, Answer Engine Optimization (AEO) has become a significant concern at the board level and is frequently discussed among CMOs. When prospects use AI tools like ChatGPT, Gemini, or Claude, the responses they receive are influenced by a collaborative effort involving SEO/AEO, engineering, content, brand, communications, and data teams, highlighting the necessity for companies to adopt a team-based approach to AEO, although research indicates many are not yet prepared.
Jul 16, 2026
181 words in the original blog post.
A digital experience platform (DXP) is an integrated, often cloud-based system that connects website content with customer data, workflows, and business systems to support consistent experiences across channels such as websites, email, social media, and sales interactions. While a content management system focuses primarily on creating and publishing content, a DXP extends this capability by linking content to the broader customer journey and maintaining unified visitor profiles. Organizations typically adopt DXPs when fragmented tools can no longer effectively support data management, content lifecycle governance, personalization, omnichannel coordination, and deeper analytics. By connecting audience information with tailored content and campaign activities, DXPs can help teams deliver more relevant interactions, maintain consistent messaging across departments and regions, and assess how digital experiences influence customer engagement and conversion.
Jul 14, 2026
758 words in the original blog post.
B2B marketing funnels are designed for complex, lengthy buying processes involving multiple stakeholders, helping marketers deliver content that matches prospects’ needs at each stage rather than pushing for a sale prematurely. A well-functioning funnel can improve conversions, lead quality, long-term engagement, message alignment, and preparedness with relevant materials. The five-stage model includes awareness, where broad educational content such as SEO-focused guides, blog posts, landing pages, and social posts helps buyers recognize a problem; interest and consideration, where case studies, comparison guides, webinars, and templates demonstrate possible solutions and social proof; evaluation and intent, where technical documentation, customer success stories, testimonials, and ROI calculators address the practical, financial, and technical concerns of wider buying committees; followed by decision and purchase and post-purchase retention and advocacy.
Jul 14, 2026
798 words in the original blog post.
Artificial intelligence (AI) has significantly accelerated the initial stages of software engineering by providing faster access to context, synthesizing information, and creating first drafts, thus reducing the time traditionally spent on searching and context gathering. At Webflow, AI is integrated not merely as a code generator but as a tool that aids in navigating through real product work with enhanced context and reduced friction. Despite this, AI does not eliminate the complexities of engineering; it shifts the focus from creation to verification, necessitating careful review and judgment to ensure the generated solutions align with the existing architecture and requirements. The ease of starting work with AI can lead to an increase in work-in-progress, requiring disciplined management to ensure efficient coordination and completion. Overall, AI enhances productivity by bridging gaps in understanding and execution, but it still demands human oversight to validate and own the final outcomes, making it an invaluable yet non-magical assistant in the engineering process.
Jul 09, 2026
2,107 words in the original blog post.
Wix and Shopify are popular ecommerce platforms with different strengths: Wix is a flexible, beginner-friendly drag-and-drop website builder that suits small businesses, creators, and brands seeking visually customized sites with basic selling capabilities, while Shopify is a commerce-focused platform built to manage products, inventory, payments, fulfillment, and growing sales operations. Wix offers a free website plan but requires a paid Core plan starting at $29 monthly for ecommerce, whereas Shopify starts at $29 monthly after a short trial and includes ecommerce functionality across all paid tiers, though payment and third-party fees may apply. Both provide hosting, security, product management, payment acceptance, and integrations, but Shopify offers more advanced operational tools, sales-channel management, and dropshipping support for larger catalogs or dedicated online stores. Wix provides greater creative control and supports broader branding and SEO needs, while Shopify’s more structured themes and workflows prioritize familiar shopping experiences, efficient checkout, and store conversion.
Jul 05, 2026
1,309 words in the original blog post.
Donald Miller’s StoryBrand framework adapts Joseph Campbell’s hero’s journey into a seven-part BrandScript that positions the customer as the hero, the brand as a trustworthy guide, and the product or service as a clear path toward success or away from failure. Its elements include defining the audience’s problem, offering a plan, presenting calls to action, and showing positive outcomes, helping websites create emotionally resonant and easy-to-follow messaging. Examples such as Claimable, DeepOcean, Laurel, and Greenhouse illustrate different applications of the approach: Claimable frames healthcare appeal support as an urgent heroic mission, DeepOcean connects its services to energy-industry transformation, Laurel organizes its site around the customer, problem, and solution, and Greenhouse uses empathetic, confidence-building language for hiring managers. The approach aims to improve website copy and layout by clarifying value propositions, directing visitors toward next steps, and keeping messaging focused on audience needs.
Jul 05, 2026
803 words in the original blog post.
AI-driven search is changing SEO by encouraging users to ask conversational, multi-step questions as they move from identifying a problem to selecting a solution, making it important for brands to track prompts across the customer journey rather than only product-focused searches. Useful prompts are generally open-ended, action-oriented, and repeatable, allowing companies to address common use cases and position their offerings within AI-generated answers. Building a prompt strategy begins with a taxonomy organized around factors such as search intent, funnel stage, and comparisons, followed by collecting seed questions from customer support interactions, sales conversations, reviews, and community platforms such as Reddit, Stack Overflow, and Quora. These initial questions should then be expanded into natural, broader conversational prompts, tested in AI platforms for relevance, and connected to the pages or content a business wants potential customers to discover.
Jul 05, 2026
772 words in the original blog post.