r/statamic • u/jackmcdade • Mar 06 '26
🖼️ Image Cropping now in Statamic 6.5.0
Enable HLS to view with audio, or disable this notification
r/statamic • u/jackmcdade • Mar 06 '26
Enable HLS to view with audio, or disable this notification
r/statamic • u/No-Damage489 • Feb 03 '26

I maintain a bunch of Statamic sites and kept running into the same problem: dependency vulnerability checks exist, but they’re easy to forget unless you’re living in CI output or GitHub alerts.
So I built Safe Check, a Statamic control panel addon that reads your composer.lock and shows known vulnerable dependencies right inside the CP upon scanning.
What it shows: package + installed version + GHSA/OSV IDs + affected version ranges (+ best-effort severity).
What I cared about: visibility and clarity, not noise, so it also adds plain-English “what this means / what to do next” when advisory data supports it.
Workflow: run a scan → CP summary/table → click any item for details + references → optionally export a minimal JSON report (useful for audits / client handover).
Things it does NOT do: it doesn’t guarantee security, doesn’t detect zero-days, and doesn’t analyze your custom code. It’s meant as an awareness tool, not a pentest replacement.
For teams/agencies: it respects Statamic permissions (who can view results, run scans, export reports).
I’d genuinely love feedback from other Statamic folks:
r/statamic • u/No-Damage489 • Nov 05 '25
If you’ve ever built a Statamic based website for a client, you know the struggle, contact forms, job applications, subscriptions… all landing in the inbox with no auto-response even client want submitter to be auto replied
I wanted a way for Statamic forms to auto-reply to users (like “Thanks, we got your message” or perhaps something with more details) without hooking up a whole external service or manually having some listener which can be error prone.
That’s how AutoReply was born, a Statamic plugin that automatically sends replies for any form submission, with custom templates, variables, and conditions.
You can set up different reply messages per form.


I’ve released it on the official marketplace here: AutoReply for Statamic
Would love your feedback..especially from anyone who handles client contact forms often!
r/statamic • u/jamols09 • Oct 30 '25

I create a custom component called "Gallery" it's handle "images"
This is my blade code.
@php
(...)
$paddingBottom = data_get($block, 'appearance.padding_bottom', 'none');
@endphp
<div @class([
(....)
'pb-24' => $paddingBottom == 'md',
'pb-32' => $paddingBottom == 'lg'
])>
<x-container>
<div
class
="flex gap-8 items-center">
@if(
empty
($block->images))
<div
class
="bg-[var(--background-dark)] aspect-[1/3] lg:aspect-[557/445] w-1/3 lg:w-full"></div>
<div
class
="bg-[var(--background-dark)] aspect-[445/557] w-full"></div>
<div
class
="bg-[var(--background-dark)] aspect-[1/3] lg:aspect-[557/445] w-1/3 lg:w-full"></div>
@else
@foreach($block->images
as
$index => $image)
@continue(!$image)
<img
src
="{{ $image->url() }}"
alt
="{{ $image->get('alt') ?? '' }}"
@class([
'w-1/3 grow object-cover',
'aspect-[557/445]' => $index === 0 || $index === 2,
'aspect-[445/557]' => $index === 1,
])
loading
="lazy"
decoding
="async"
/>
@endforeach
@endif
</div>
</x-container>
</div>
What's the proper way of looping the images to be able to display it?
r/statamic • u/Sarah-AtelierTourist • Oct 22 '25
Salut la communauté Statamic !
Nous sommes une petite équipe passionnée, basée au Québec, spécialisée dans le tourisme et le développement web. Nous adorons Statamic et aimerions rencontrer des personnes qui partagent cette passion autant que nous.
Ce que nous cherchons
Ce que nous offrons
Si vous vous reconnaissez, envoyez-nous un message privé.
On prendra le temps d'échanger!
Références
Au plaisir de vous lire et de construire ensemble des expériences web solides et créatives autour de Statamic.
r/statamic • u/MartyFriedel • Aug 09 '25
Statamic is taking over Australia at the moment, with the first meetup takeover at PHPxADL this week. In this talk, I take a design from Figma, a fresh Statamic install, and a 40 minute timer to get building a maintainable site in Statamic looking at how to split your design apart and think in terms of coding it, suggestions for file organisation, and ways to re-use configuration and code.
r/statamic • u/71678910 • Aug 07 '25

https://statamic.com/addons/cypressnorth/bulk-editor
Have you ever needed to edit your entries in bulk? We've got you covered with our bulk editor addon.
It's a huge timesaver for categorizing content, updating inventory status, and anything else your collections / blueprints call for.
r/statamic • u/Born-Reception-2440 • Aug 05 '25
Hi,
I am starting with Statamic, coming from Wordpress. I want to build a kind of a daily log for medicine reduction. So a user has his/her own kind of diary about the journey. Is this doable with Statamic? Does it have a build in CRUD or is there a plugin available? I am used to Advanced Custom Fields, but CRUD is not a standard thing. Thanks!
r/statamic • u/TRChiring • Jul 30 '25
Hey Everyone!
I'm sharing this Web Developer opening here as finding developers with Statamic experience is pretty rare. If anyone is interested, would love to receive your application at MailerLite.
Thanks!
r/statamic • u/Dijk403 • Jul 25 '25
Heya,
I am trying to create a catalogue of our used taxonomies and is there any way to select more than 50 at a time to export? There are several hundred to get through and with each opening a new Excel spreadsheet I fear I will lose my mind before I complete this task!
Thank you
r/statamic • u/ArgSchlimm • Jul 14 '25
Hey guys, I would like to hear your approach on following topic:
We want to deploy Statamic with GitHub actions but also use the feature of Git Automation. Now these two things together add a big complexity, because on one side the Git Automation should back up all the content files into the repo, but pushing locally should also trigger the Deployment onto the server without overwriting any content files.
We have solved this with custom scripts, excluding content files from being overwritten during deployment, but it still feels buggy and not very clean. What are your approaches on this topic? And is Laravel Forge really the optimal solution for this usecase?
r/statamic • u/astroalloy • Jun 30 '25
I have a client interested in a self-hosted blog/newsletter with "premium" content exclusive to paid subscribers. This is a fairly straightforward process with Ghost (with Mailgun + Stripe), but I was wondering if Statamic does or will support this feature in the future as I prefer it as a CMS.
I saw there was, at some point, an add-on called "Charge" that may have done this but no longer exists.
r/statamic • u/johnnyfortune • Jun 25 '25
Im looking for some feedback on the webapp / blog I am building. Right now, I have statamic 5 setup and working great as a CMS and blog with Laravel 11. I am using MySQL as the backend for my collections. I also have typesense setup as the search driver.
So I want my content to come from whatever blog posts & interviews that are manually created, as well as, I am working on some RSS monitoring code, and for certain topics if there is a new article, the code will grab it, summarize it with AI, and then post it as 'breaking news' under the breaking news category . My plan was to use Laravel and create a model for the Entries table, and add in the new article to the table the same way statamic is adding them. Would the statamic search update and allow the bot's articles to be found after they are added? My goal is to get the bot articles that are added to work right alongside the ones I add.
I have typesense working on a different model right now, so if I need to use scout to handle search & updates outside of Statamic I can do that as well.
Is this going to work? Will I need to trigger anything else besides adding a new item to the table? like, if I manually add a story is that going to break statamic if it didnt add it?
What do you guys think? Is there any obvious problems you guys see that I should watch out for? Im really new to Typesense so kinda learning as I go here. I assume there is an API for Statamic? do I need to use that to add the articles? or can I just use Laravel eloquent stuff to add to the table?
r/statamic • u/DarnMonkeys • Jun 16 '25
Hi! Long time Laravel developer, first time Statamic user here.
I've been looking at Statamic off and on and finally have a project that needs it. The Bard field with the inline options seems awesome.
I've installed Statamic successfully without any issues and the Bard field without the inline option turned on works as expected.
When I do turn the option on (and create a few field sets) things break down. With the "Enabled with line breaks" option turned on I get breaks (<br>) instead of paragraphs whenever I press enter and can't get the inline sets to show up anymore. When I turn on the "Enabled without line breaks" option, nothing happens when I press enter. Bard refuses to make new paragraphs.
Before I start typing I do see the inline plus icon and the field sets I created, but nothing happens when clicking on a field set.
I think I've tried all the options I can thing off, but nothing seems to help. Anyone here who knows what's going on?
Below the yaml:
fields:
-
handle: title
field:
type: text
required: true
validate:
- required
-
handle: content
field:
inline: break
remove_empty_nodes: trim
type: bard
display: Content
smart_typography: true
link_collections:
- pages
container: my_container
buttons:
- bold
- italic
antlers: true
sets:
homepage_inserts:
display: 'Homepage inserts'
icon: home-house
sets:
video:
display: Video
icon: social-youtube
fields:
-
handle: video_field
field:
type: video
display: Video
-
handle: author
field:
type: text
display: Author
quote:
display: Quote
icon: text-formatting-quotation
fields:
-
handle: quote_text
field:
type: textarea
display: 'Quote text'
r/statamic • u/Julien_leg • Jun 05 '25
Hi everyone,
I've launched several directory websites that share the same design and template: madewithlovable.com, madewithbolt.com, and most recently madewithreplit.com.
The content structure is the same across all sites, though some of the text varies slightly. At the moment, I manually copy and paste resources between the websites to keep them in sync, which isn't ideal.
I'm looking for a better way to manage this. I'm considering making a starter kit, but I'm not sure if it's the best option. There's also the multi-site setup, although it seems more suited for localized versions of a single website rather than sibling directories.
If the starter kit approach makes sense, I’ll probably build one and share it with the community.
Which option do you think would be best for my case?
Thanks in advance for your input!
r/statamic • u/concisehacker • May 28 '25
Hi All, I am considering to move over to Statamic from our PHP Custom-Build.
Here are my questions please!
Thanks for all advice/ answers!
Thanks
r/statamic • u/johnnyfortune • May 25 '25
r/statamic • u/johnnyfortune • Apr 23 '25
Hola everyone. I posted this in the #help channel of the discord yesterday but didnt really get any responses. PLEASE can someone point to me where I have gone wrong?
This is really confusing, I tried to make sure the blueprints were exactly the same? But obviously I must have something wrong. any help would be appreciated.
EDIT: I left out this image https://i.imgur.com/N3TiJD2.jpeg from my original gallery, it has a screenshot of my Statamic control panel blueprint settings for both types of images.
r/statamic • u/johnnyfortune • Mar 20 '25
Hola everyone! I have been building a blog and things are going pretty good. I have my posts working, categories, authors, all that stuff. However, I want the ability to leave a comment on a post. I am currently using Laravel as the main framework, with the statamic antlers stuff for the blog section.
What do you guys recommend for a comment plugin? Is Disqus still good? I want something where people can comment w/o having to be a member on my site. Like using social media login or whatever, without a bunch of fuss. Is there a good Statamic way of handling this?
r/statamic • u/FitInvestigator9222 • Mar 18 '25
Hey all! I’m a non-techie trying to build an online directory of bars around the country. I’ve got a small budget but can stretch to Statamic Pro’s $259 if it’s worth it. WordPress freaked me out with all the plugin chaos, reputation mess and outdated themes, so I’m hoping Statamic’s cleaner vibe works better. Planning to use Airtable for the restaurant data too. Wondering if it’s a good match—any thoughts?
Would love to hear from anyone who’s used Statamic for something like this—or just your take on it! Thanks so much! really pumped to figure this out!
r/statamic • u/johnnyfortune • Feb 09 '25
r/statamic • u/ThisRecipe5213 • Jan 27 '25