Reading view

Multi-step forms in React are a nightmare once logic gets involved — here's what I built to fix it

You start simple — a few steps, some state. Then requirements come in: "skip step 3 if the user picked X", "loop through this section for each item", "go back and remember previous answers". Suddenly you've got navigation state, conditional renders, and back/forward logic scattered across your entire component tree.

This comes up constantly in onboarding flows, surveys, contact forms, booking flows, product configurators — anything where the flow needs to adapt to user input.

I built Formity to fix this. You define the flow in a schema and it handles all the logic for you:

  • Conditions, loops, and variables for fully dynamic flows
  • Works with React Hook Form, Formik, and TanStack Form
  • Full TypeScript support with type inference across the entire flow

midudev (500k subs) and Hamed Bahram (200k subs) have both covered it if you want to see it in action.

GitHub: https://github.com/martiserra99/formity

Happy to answer any questions!

submitted by /u/martiserra99 to r/reactjs
[link] [comments]

Open Source LMS (PHP/Laravel) – Looking for Contributors 🚀

Hi everyone,

I’m currently building an open-source Learning Management System called TadreebLMS, and we’re looking for developers who might be interested in contributing.

The project is built with:

  • PHP / Laravel
  • MySQL
  • Bootstrap / JavaScript

We recently released a new update that introduces a plugin marketplace, allowing integrations such as:

  • Zoom virtual classrooms
  • Microsoft Teams integration
  • Google integrations
  • S3 bucket storage for scalable media storage

There are several open issues related to:

  • bug fixes
  • feature enhancements
  • UI improvements
  • documentation

If anyone is interested in contributing to an open-source Laravel project, feedback and pull requests are very welcome.

GitHub Issues:
https://github.com/Tadreeb-LMS/tadreeblms/issues

Even if you don’t want to code, feedback on architecture, UI, or feature ideas would be really helpful.

Thanks!

submitted by /u/TrainSensitive6646 to r/PHP
[link] [comments]

Ever tried “honey contacts” in a CRM to catch data leaks?

Hey everyone 👋

We’ve been experimenting with a neat trick in Salesforce: creating fake “honey” contacts to detect unauthorized exports or suspicious activity. Basically, dummy records that alert you if someone accesses or exports them.

Curious if anyone else has tried this?

  • What worked or didn’t?
  • Any tools to automate the monitoring?
  • Gotchas we should know about?

Would love to swap ideas and see how other admins/security folks handle this!

submitted by /u/Powerful_Pen_5979 to r/CRM
[link] [comments]

Anyone know any themes similar to this squarespace website on Word Press?

I'm really new to website building and I really like how this website looks. I was wondering if anyone knew a theme that looks like this website:
www.backyardtentrental.com

Its for event rentals and I'm struggling to find something like it.

submitted by /u/FaithlessnessFree830 to r/Wordpress
[link] [comments]

Safari silently deleted our users' saved data after 7 days.

We built a web based project management tool, not a full SaaS with accounts at first, just a local first tool where everything saves to browser via IndexedDB. Think of it like Notion but everything stays in your browser, no server, no account needed. We marketed it as "your data never leaves your device" and people loved it, about 25K weekly active users mostly on desktop Chrome and Firefox where everything worked perfectly.

Then we started getting emails from users saying their entire project boards were gone. Not corrupted, not partially missing, completely wiped like they'd never existed. The weird thing was it was only iPhone and iPad users and pattern was always same, they'd use app heavily for a few days, then not open it for about a week, and when they came back everything was gone.

It took us way too long to figure this out because we kept looking for bugs in our code. We audited our IndexedDB write logic, checked for storage quota issues, added error boundaries around every database operation, added telemetry to track when data was being written and read. Our code was fine. The data was being saved correctly every single time. It was just disappearing on its own a week later.

Turns out Safari on iOS has a 7 day cap on "script writable storage" for websites that aren't added to home screen as a PWA. If user doesn't visit your site for 7 consecutive days, Safari automatically purges all their IndexedDB, localStorage, Cache API data, everything. This isn't a bug, it's a deliberate WebKit policy for "Intelligent Tracking Prevention" that Apple implemented to prevent cross site tracking. The problem is it also nukes legitimate application data for any web app that stores things locally, and Apple doesn't surface any warning to user or developer before it happens. Your data is just gone and there's no way to recover it.

The really painful part is that this doesn't affect Chrome on iOS because even though Chrome on iOS uses WebKit under hood, it manages its own storage policies differently. So our Chrome on iOS users were fine and our Safari users were getting their data wiped and we had no idea why the behavior was split because we assumed all iOS browsers behaved same since they all use WebKit.

We confirmed this exact behavior by testing on real iOS devices, opening app in Safari, writing data, then not touching it for 7 days and checking if data survived. some tool to automate this across different iOS versions because storage eviction rules have changed slightly between iOS 16 and iOS 18 and we needed to know exactly which versions were affected and which weren't. The 7 day wipe was consistent across all recent versions for Safari but behavior was slightly different for PWAs installed to the home screen where the data persisted longer.

The fix was a fundamental change. We added an optional account system with server side sync so users' data has a backup beyond browser's mercy. For users who still don't want to create an account we added a prominent warning specifically for Safari users explaining that their browser may delete saved data after 7 days of inactivity and recommending they either add the app to their home screen as a PWA or export their data regularly. We also built an auto export feature that saves a JSON backup to user's iCloud or local files every time they use app as a safety net.

If you're building any kind of local first web app that stores meaningful user data in IndexedDB or localStorage and you haven't tested what happens to that data on Safari after a week of inactivity, you need to test it immediately because your iOS Safari users might already be losing their data and you'll never see it in any error log because from Safari's perspective nothing went wrong.

submitted by /u/ContactCold1075 to r/webdev
[link] [comments]

Suggestion for hosting a full stack application.

Fixed a few bugs in my "URL SHORTENER" project, I was planning on hosting a complete Full stack web application, But I am confused about where I should host it? It would be great if someone could help me with this!

submitted by /u/Embarrassed-Bed-9377 to r/webhosting
[link] [comments]

Anyone else find CF7 to CRM integrations unnecessarily painful? Curious how others are solving this

Been working with WordPress and Contact Form 7 for a while now and one thing that keeps coming up across different client projects is how overcomplicated the CF7 to CRM connection gets.

The typical flow most people end up with is CF7 fires a webhook, that hits Zapier, Zapier calls HubSpot or Zoho or whatever the client is using. It works but you are now paying monthly forever just to be a middleman between two things that could theoretically talk directly to each other. And the moment a task limit gets hit or something in the chain breaks, the client has zero visibility into what went wrong.

I went down a rabbit hole trying to find a cleaner way to handle this and eventually found something that connects CF7 directly to any REST API from inside WordPress itself. No third party relay, no extra monthly cost on top of everything else, and you can actually see the API response logs right inside the dashboard which has saved me a lot of debugging time.

Have used it across several client projects now connecting to different CRMs and it has honestly simplified things more than I expected.

Curious what approach others here are taking for this. Is Zapier still the default for most of you or have you moved to something different?

submitted by /u/Different-Jury-4764 to r/Wordpress
[link] [comments]

How are you bloggers handling Pinterest? Is manual pinning still the norm

I've been talking to a few bloggers and noticed that converting blog posts into Pinterest-ready pins is still mostly manual — resize, rewrite captions, pick boards, schedule. Is that your experience too? What tools are you using, if any? Genuinely curious what the workflow looks like for people actually doing this.

submitted by /u/Present-Ad-2621 to r/Wordpress
[link] [comments]

I built an open-source, browser-based color grading engine that uses steganography to hide edit data inside PNGs.

Hey everyone, As a second-year CS student and designer, I’ve always been frustrated by how high-end color grading is locked behind heavy desktop software and subscription paywalls. I wanted to see if I could bridge the gap between computer science and digital art, so I built LUMAFORGE.

It is a professional-grade optics engine that runs 100% locally in your browser. No backend processing for the images, just pure Canvas API math.

You can check out the live engine here: Click Here And the GitHub repo here: Click Here

I wanted to share a few of the technical challenges and features I’m really proud of:

1. The Image is the Preset (Steganographic Payloads):

Standard photo apps save your edits in a sidecar file or a database. I wanted the exported image to be entirely self-contained. Lumaforge uses steganography to bake your entire mathematical node tree (sliders, custom RGB spline curves, split-tones) directly into the exported PNG’s metadata via custom tEXt chunks. If you drop any Lumaforge-exported image back onto the canvas, the engine decrypts the payload and perfectly reconstructs your exact edit history.

2. The Uplink (Flat Relational Database):

I built a global community feed called "The Uplink" where users can publish their grades. If you see a grade you like, you can click "Fork & Remix" to instantly extract their math and apply it to your local canvas.

3. Universal .CUBE Export:

Your browser grades shouldn't be trapped on the web. I built a custom LUT compiler that generates a default 3D mathematical color grid, runs it through the canvas pipeline, and formats the output into industry-standard .CUBE files. You can build a look in Lumaforge and instantly use it in Premiere Pro or DaVinci Resolve.

The Stack: • Frontend: React.js, WebGL / Canvas API • Backend / Auth / Storage: Supabase

The v1.0 architecture is stable, and I'm currently prepping the infrastructure for native Computer Vision processing pipelines.

I’d love for you to try it out, tear apart the code, or drop a PR if you are interested in browser-based optics. Happy to answer any questions about the canvas math, the steganography pipeline, or the database architecture!

submitted by /u/Constant_Syrup950 to r/reactjs
[link] [comments]

I Built a Live Class MERN App (Video Sessions + Real-time Chat)

https://www.youtube.com/watch?v=xA3BIPPNJXo&t=13561s

This is not a basic CRUD project.
This is a real-world, resume-ready, placement-focused full stack project.

We will implement:

🔐 Secure Authentication System (Auth)
🎥 Live Video Session Integration
💬 Real-Time Chat System
👨‍🏫 Host & Student Role-Based Access
🧠 Protected Routes & Backend Middleware
🗄️ MongoDB Schema Design

⚙️ Production-Level Folder Structure

If you want to become a serious MERN Stack Developer in 2026, this project is for you.

submitted by /u/Ill-Connection-5578 to r/reactjs
[link] [comments]

Que pasa con estos gringos metidos hasta en las escuelas

Que pasa con estos gringos metidos hasta en las escuelas

Fren mi hijo llego con esta maleta que le dieron de la embajada de usa, estos hp ahora están metidos en todos lados ahora también en las escuelas, no se debería permitir a estos militares asesinos de niños en las escuelas.

Le estoy quitanto esas banderas para que almenos la pueda regalar a alguien que la necesite.

submitted by /u/AleStla to r/Panama
[link] [comments]

Fui a Taboga y esto me paso

Ayer fui a Taboga y la verdad es que muy bonito todo. La atención es buena, el ceviche es bueno y la playa está limpia. La primera y última vez que fui fue en el 2022 y la verdad había quedado encantada.

Ayer, estando dentro de la playa, sentía como me picaban cosas que no podía ver. Al salir obvio ya me picaba la piel, pero hoy amanecí súper brotada con muchas ronchas. Como si miles de mosquitos me hubieran picado, pero eso me paso dentro del mar. Hace más de un mes, fui a Veracruz y me paso lo mismo. Algún experto que sepa que carajos produce estas picaduras JAJAJA.

submitted by /u/witchhluna to r/Panama
[link] [comments]

Status of HP-Themes ??

I have sent three support inquiries for their Highend Theme in as many weeks. I receive an automated messages saying "We’ve received your support ticket and we are already on the case. Expect to hear from us within 48 hours". No other response. Nothing. I have a valid support license. Very disappointing. Has any one else had this experience?

submitted by /u/WirelessWilly to r/Wordpress
[link] [comments]

Newbie seeking CRM recommendations for a business who also wants inventory management?

Client is a second hand high priced item dealer who is managing everything in excel spreadsheets currently

- Wants to ingest leads from IG/FB/Whatsapp and ideally be able to respond to messages via the CRM admin.

- Sells used/new items and wants inventory management too.

Am I right that inventory management isn't a typical feature of modern CRMs? They al seem focused on workflows with heavy AI features.

submitted by /u/klondike91829 to r/CRM
[link] [comments]

Responsive Menu plugins for mobile never show up right

I’m struggling to get a responsive menu working for our website in mobile. The last responsive menu we had from the previous marketing company worked up until an update in Wordpress and it never worked again. Now when I put in a new responsive menu plugin everything seems like it will work and then when you look on mobile it looks like code is broken on our website and lists EVERYTHING out as bulleted points. I ended up taking it down because although it gives people the ability to see all these other pages, it doesn’t make the website look nice. I’ve tried every compatible responsive menu and incompatible to the newest Wordpress update and they always end up like this. Please help me unravel this mystery

submitted by /u/Any-Insurance6576 to r/Wordpress
[link] [comments]

Having issues with new ACF fields not showing up

I’m no expert at Wordpress and coding (yet), however I’m doing what I can to teach myself these things as I go along. Expert advice is greatly appreciated here.

The company I work for had a marketing company prior to me coming in and being the in house marketing person. The previous company had set their own theme for the website. Since they were let go, we’ve been using that theme. The homepage is created mainly through ACF field groups. Every time I go to add a field and save, it won’t show up on the published end. I’ve read that it can be from the previous company and then this forum went into coding into the theme - which I did and crashed the website immediately (thank god for backups). I’m at a loss at this point and need help please

submitted by /u/Any-Insurance6576 to r/Wordpress
[link] [comments]

filter and sort ui design for products with lots of options

Im building filtering for a product with 20+ possible filters and the UI gets messy fast. Putting all filters visible makes it overwhelming, hiding them in menus makes discoverability bad, using a slide out feels clunky on desktop. Not sure what the right pattern is here. Ive been studying filter implementations on mobbin from ecommerce and marketplace apps since they deal with this problem constantly. Most use some combination of visible key filters plus a "more filters" option. Seems like the trick is identifying which 3-5 filters matter most to users. Still figuring out the exact implementation but at least I have realistic reference points now instead of inventing it from scratch.

submitted by /u/Luckypiniece to r/Frontend
[link] [comments]
❌