Josh Crawford

Results 1382 comments of Josh Crawford

Just for clarity, we're talking about [cookiebot](https://www.cookiebot.com/) right? That is indeed a bit problematic with it blocking loading. It feels heavy-handed to disable the form entirely if JS fails, but...

Having a global and per link type setting might be tricky, but I'm sure we can come up with something. I know for a fact users want to be able...

It's not out-of-the-box, but yes this could be done. You'd need to first look up previous submissions for the form: ```twig {% set submissions = craft.formie.submissions().form('contactForm').all() %} ``` Then get...

You won't be able to add extra field settings to a core field, but you can create your own! In fact, you could extend the Formie Radio Button class itself,...

A great first start is our [user guide](https://verbb.io/craft-plugins/formie/user-guides/creating-your-own-custom-field-from-scratch) about custom fields to gain a full understanding of things. In your case, you'll extend an existing class, and extend one of...

There are some complications unfortunately to using Matrix within Vizy fields in Craft 5. This is because unlike Craft 4, Matrix in Craft 5 is all about entries. Matrix fields...

Still working through this, most avenues have unfortunately hit a bit of a brick wall. While looking at CKEditor was a good start, it's not going to be compatible with...

Updated in [3.0.6](https://github.com/verbb/vizy/releases/tag/3.0.6) to no longer be able to add Matrix block, but we're looking at more permanent support of course.

We can't use `.with('hyperFieldHandle')` because the value of Hyper fields aren't elements. In fact, doing that will cause an issue, so I'd recommend not to do that. I suppose the...

Fixed for the next release. To get this early, run `composer require verbb/vizy:"dev-craft-5 as 3.0.1"`.