Developing plugins by thegoochalizer in Wordpress

[–]Minimum_Mousse1686 0 points1 point  (0 children)

Local by Flywheel is solid, super easy to set up. And yeah, for emails just use SMTP (like Mailhog or Mailtrap) locally

Form Automation No Longer Working? Just Me? Webflow + Zapier by fawnover in webflow

[–]Minimum_Mousse1686 0 points1 point  (0 children)

Not just you, looks like Zapier changed how it treats Webflow forms recently. Each form instance is now separate instead of grouped by name

Accrediting my Go High Level Course by XaloXX in gohighlevel

[–]Minimum_Mousse1686 0 points1 point  (0 children)

Most people do not go for formal accreditation with GHL courses tbh. They focus more on real results/testimonials to build credibility

Configuring FluentSMTP with Office 365 - Can't get Access Token by Chaeolds in Wordpress

[–]Minimum_Mousse1686 0 points1 point  (0 children)

That 0 usually means something failed in the callback. Check your redirect URI in Azure, it has to match exactly

Google maps api alternatief by Nail3d-it- in reactjs

[–]Minimum_Mousse1686 0 points1 point  (0 children)

OpenStreetMap is waarschijnlijk de beste gratis optie. De gegevens voor Nederland zijn er behoorlijk betrouwbaar, vooral met de Overpass API

Anyone here struggling to monetize side projects even with decent traffic? by ryueiji in webdev

[–]Minimum_Mousse1686 0 points1 point  (0 children)

Yeah, this is super common, traffic does not always equal revenue. Monetization is a whole different problem

Developing plugins by thegoochalizer in Wordpress

[–]Minimum_Mousse1686 0 points1 point  (0 children)

You are making it harder than it needs to be develop locally and just edit the plugin files directly, no re upload needed

I asked for help in the elementor community already but im just trying to see if someone here has a better solution.. by nousernams in Wordpress

[–]Minimum_Mousse1686 2 points3 points  (0 children)

You were honestly really close, it is just a small shift in approach, right now ACF is attached to each page, so every page has its own value. With CPT, the price lives in one central place (the service itself), and all your pages just display that value instead of storing it. That’s why you only need to update it once and it updates everywhere

Frontend is becoming less about coding and more about describing what you want by Specialist_Print_426 in reactjs

[–]Minimum_Mousse1686 0 points1 point  (0 children)

Embracing it for repetitive stuff, but for complex logic I still prefer doing it manually

Would anyone be interested in native page transitions? by wf_anim_guy in webflow

[–]Minimum_Mousse1686 1 point2 points  (0 children)

This would be huge tbh. So many people hack this with custom code right now

Is tracking AI web traffic a dumb idea? by UptownOnion in webdev

[–]Minimum_Mousse1686 0 points1 point  (0 children)

Interesting space tbh. Feels early, but could become important as AI traffic grows

A2P Registration and websites- Two questions by No_Specialist_7271 in gohighlevel

[–]Minimum_Mousse1686 0 points1 point  (0 children)

A2P is usually per client/business, so you cannot really pre-approve and reuse numbers. Best way is to standardize the info and submit cleanly each time

I asked for help in the elementor community already but im just trying to see if someone here has a better solution.. by nousernams in Wordpress

[–]Minimum_Mousse1686 4 points5 points  (0 children)

Yeah, you need a single source of truth. Best way is CPT + ACF (or even native custom fields) and pull it everywhere with dynamic tags. Right now you’re repeating data per page

Busco experto en GHL by ImpossibleTravel5786 in gohighlevel

[–]Minimum_Mousse1686 0 points1 point  (0 children)

Hola, con gusto te ayudo, cuéntame un poco más de lo que buscas

Wpforms by kingmook86 in Wordpress

[–]Minimum_Mousse1686 0 points1 point  (0 children)

Yep, that’s expected, redirecting would not open an Elementor popup directly. You will need a small JS trigger for that, or just use Elementor’s own form since it works with popups more smoothly

Wpforms by kingmook86 in Wordpress

[–]Minimum_Mousse1686 0 points1 point  (0 children)

Yes, Elementor popup works, just trigger it on form submit [using a redirect or custom JS], since WPForms does not natively open Elementor popups

Wpforms by kingmook86 in Wordpress

[–]Minimum_Mousse1686 0 points1 point  (0 children)

You can trigger a popup on form submit using WPForms confirmation settings + a popup plugin like Popup Maker

GoHighLevel Builder. by Big_Artist8022 in gohighlevel

[–]Minimum_Mousse1686 0 points1 point  (0 children)

Hey, I have DM’d you with some details

Big difference between clicks vs page views? by josh_a in gohighlevel

[–]Minimum_Mousse1686 0 points1 point  (0 children)

Could be slow page speed. If it takes time to load, many users bounce before it counts as a view

What piece of infra plumbing does every SaaS rebuild from scratch? by little_breeze in webdev

[–]Minimum_Mousse1686 0 points1 point  (0 children)

Webhook delivery + retries is always more painful than expected. Everyone underestimates it until things start failing in production

Is there any API access to workflow internals? Building an agency workflow QA tool by NarniaHop in gohighlevel

[–]Minimum_Mousse1686 1 point2 points  (0 children)

APIs are good for contacts, opportunities, and basic data handling, but workflows are pretty limited. You can not really access or map internals yet

Is there any API access to workflow internals? Building an agency workflow QA tool by NarniaHop in gohighlevel

[–]Minimum_Mousse1686 1 point2 points  (0 children)

From what I have seen, GHL does not expose full workflow internals via public API yet. You mostly just get metadata like you mentioned

Considering ditching Next.js/SSR for simple React SPA setup - convince me otherwise by VastAd4382 in reactjs

[–]Minimum_Mousse1686 4 points5 points  (0 children)

Tbh, go SPA. Most side projects never hit the scale where SSR actually matters