Ben

Results 35 comments of Ben

@PavelLaptev that's really awesome!! Such a nice interface, amazing work mate

We had some success using barycentric coordinates in #11 but it won't work with bezier curves like you need here. This is certainly possible though with warp.js because as long...

Embedded assets are JSON files, so that's all good. It seems reading the source of the JSON files is the problem. This might be caused by file permissions. Your assets...

Can you check the log file for the plugin under the storage/logs directory and see if it's reporting any issues?

Been something I've been working on for a while now – turns out locales are tricky 😅

After comparing the behaviour to the Matrix field, it seems that Neo's behaviour is identical. To be honest, I'm not entirely sure what you should expect when transferring locale data....

Yeah I added in those class names for this exact reason. I've thought about a block type colouring setting, but I don't have any plans as of yet to implement....

Hey @richardwiggins, seems I've figured out the problem. Since Neo is built much like a glorified entries field, `relatedTo` filters will not look inside Neo blocks (like how it won't...

Okay, maybe I haven't fully understood how you've set these relations up. Is it that you have a list of event entries, that contain Neo fields with entry fields? And...

Try this: ```twig {% set neoRelatedEvents = [] %} {% for event in craft.entries.section('events') %} {% if event.neoField.relatedTo({ targetElement: entry }).total() > 0 %} {% set neoRelatedEvents = neoRelatedEvents|merge([event]) %}...