Payload CMS, known for its modern and flexible content management features, has just rolled out a highly anticipated beta version packed with significant improvements and new capabilities. Whether you’re a developer, a content manager, or someone exploring CMS options, this latest update has something to offer. Key Features in the New Beta Version: Improved Content… Continue reading Exciting Updates in the Latest Payload CMS Beta Version
Tag: payload cms
Nested Docs Plugin in Payload cms
This plugin allows you to easily nest the documents of your application inside of one another. It does so by adding a new parent field onto each of your documents that, when selected, attaches itself to the parent’s tree. When you edit the great-great-grandparent of a document, for instance, all of its descendants are recursively updated. This… Continue reading Nested Docs Plugin in Payload cms
Payload 3.0 vs payload 2.0
Payload V3.0 beta In native next js app (uses app router and nextjs route handlers) Standard next js project with payload initialized in it. Front end and backend in same repo The main differences between Payload CMS versions 2.0 and 3.0 (beta) can be summarized as follows: 1.Performance Enhancements: V2.0: Focused on general stability and… Continue reading Payload 3.0 vs payload 2.0
Global Hooks in payload
Globals feature the ability to define the following hooks: beforeValidate beforeChange afterChange beforeRead afterRead Config All Global Hook properties accept arrays of synchronous or asynchronous functions. Each Hook type receives specific arguments and has the ability to modify specific outputs. globals/example-hooks.js import { GlobalConfig } from ‘payload/types’; const ExampleHooks: GlobalConfig = { slug: ‘header’,… Continue reading Global Hooks in payload
Sentry Plugin in Payload
Sentry is a powerful error tracking and performance monitoring tool that helps developers identify, diagnose, and resolve issues in their applications. This multi-faceted software offers a range of features that will help you manage errors with greater ease and ultimately ensure your application is running smoothly. Core Features Error Tracking: Instantly captures and logs errors… Continue reading Sentry Plugin in Payload
Postgres Sql in Payload
To use Payload with Postgres, install the package @payloadcms/db-postgres. It leverages Drizzle ORM and node-postgres to interact with a Postgres database that you provide. It automatically manages changes to your database for you in development mode, and exposes a full suite of migration controls for you to leverage in order to keep other database environments in sync with… Continue reading Postgres Sql in Payload
Schema for disable specific fields for different roles in payload CMS(role wise access for fields).
Update the schema for the field you have to disable for other users. { name: ‘approvalstatus’, type: ‘select’, options: [ { label: ‘Entered’, value: ‘entered’ }, { label: ‘Submit’, value: ‘submit’ }, { label:… Continue reading Schema for disable specific fields for different roles in payload CMS(role wise access for fields).
PostgreSQL database and its benefits
PostgreSQL is an advanced, enterprise-class open-source relational database that supports both SQL (relational) and JSON (non-relational) querying. It is a highly stable database management system backed by more than 20 years of community development. This thorough and collaborative approach has contributed to its high levels of resilience, integrity, and correctness. PostgreSQL is used as the primary data… Continue reading PostgreSQL database and its benefits
Payload CMS to limit the fields in the admin panel for different users.
Access control within Payload is extremely powerful while remaining easy and intuitive to manage. Declaring who should have access to what documents is no more complex than writing a simple JavaScript function that either returns a boolean or a query constraint to restrict which documents users can interact with. By default, all Collections and Globals require that a user… Continue reading Payload CMS to limit the fields in the admin panel for different users.
Recent features and improvements with payload cms
Field Enhancements: Rich Text Improvements: Advanced control over the rich text editor with custom formatting options, link handling, and more. New Field Types: New field types like JSON, code, and relationship improvements to better structure your data. Admin UI Enhancements: Improved List Views: Enhanced list views with better filtering, sorting, and searching capabilities. Customizable Admin… Continue reading Recent features and improvements with payload cms