Josh Crawford

Results 1030 comments of Josh Crawford

Sounds like a good idea, thanks!

So this 100% works for me. I wonder if it might be due to using Vue on your site? This does affect how Formie's JS is fired, and how the...

More than happy to consider this, my only concern would be the "client-unfriendliness" of this setting, but it's also no different to a field's Input attributes or Container attributes which...

Fixed for the next release. To get this early, change your `verbb/formie` requirement in `composer.json` to: ``` "require": { "verbb/formie": "dev-craft-4 as 2.0.13", "...": "..." } ``` Then run `composer...

Fixed in [2.0.14](https://github.com/verbb/formie/releases/tag/2.0.14)

All fields are [searchable by default](https://github.com/verbb/formie/blob/25b9aca5682ef454baa8a646e7425002501c35b6/src/base/FormField.php#L28). But depending on what sort of field it is, will depend on what values are added to the search indexes. As for the filtering...

> Ok so if I read you right, you did not implement anything to support custom sources or filtering. Which makes sense for custom sources as no custom fields appear...

Neat @javangriff consider that on our list to add! @bossanova808 I'll consider a new plugin for sure! There are a few others (like Snaptcha, Shield) which probably make sense to...

Neat @javangriff consider that on our list to add! @bossanova808 I'll consider a new plugin for sure! There are a few others (like Snaptcha, Shield) which probably make sense to...

Yep, but you'll just need to sort things out manually (you can't add UI to the field mapping section). https://verbb.io/craft-plugins/formie/docs/developers/events#the-beforeSendPayload-event ```php use verbb\formie\events\SendIntegrationPayloadEvent; use verbb\formie\integrations\elements\Entry; use yii\base\Event; Event::on(Entry::class, Entry::EVENT_BEFORE_SEND_PAYLOAD, function(SendIntegrationPayloadEvent...