Is it possible to remove import/export functionality for blueprints?

I’d like to know if there’s a configuration setting (or some other way) to remove that for Tailor blueprints.

1 Like

Hi @cecilia.ritta

Thanks for your question. This is an excellent suggestion since we are currently working on tailor customization properties. It was not on our list, but it is now!

We will let you know once the feature becomes available.

2 Likes

This has been implemented in v3.1.9+

Entry blueprints can now disable import/export buttons.

Property Description
showExport displays a toolbar button for exporting records. Default: true.
showImport displays a toolbar button for importing records. Default: true.

For example:

handle: Blog\Post
name: Post
# ...
showExport: false
showImport: false
3 Likes