Needing some specific functionality #1692
Replies: 2 comments
|
As forms are multi-site specific at the moment, you'll have to achieve some of these things through a custom module, or custom templates where you modify the entries element query. There's a bit of a user guide on this. Here, you can change the query to fetch entries for the site you want. {% do field.setElementsQuery(elementsQuery.siteId(2)) %}As for not being limited to the current user, that's not something Formie deals with, as there's not always a user to restrict by - to handle guests for instance. As for file upload fields, that's indeed not possible at the moment, as is more a browser restriction than anything else. We have plans to include a more feature-rich component. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi all,
I have website for a client, that is a craft multisite setup. I need to setup some forms on one of them, but I run into some functional issues. It's a school website, with the subsite being a sort of students platform. A contactform on that subsite needs to access some data on the main site.
Perhaps some of these things are possible via a custom module? Any help is appreciated.
All reactions