Tell us what you are trying to do?
I have built a template in Elementor for my 'people' custom post type. It has fields like 'title', 'bio', 'certifications' etc. However, when I go into the dynamic content, only the text fields are showing, but the fields I've created with checkboxes are not there. I've looked a bunch of tutorials and help pages and can't figure out how to solve this problem. I've tried views and shortcodes etc.
When I go to 'edit view in toolset', it says "Sorry, you are not allowed to access this page.".
I don't want to create a whole new template in toolset for the 'People' view, because I've already designed some of the graphic stuff in Elementor and I understand I can't use both. How can I get these fields to show up in Elementor dynamic content?
What is the link to your site?
Here's an example page: hidden link
I'm not sure that will be helpful though. Please see screenshots attached.
The custom checkboxes field is a special field that stores its value to database as serialized array and such values are not easy to parse by third party.
The Elementor plugin's team maintains this feature of picking custom fields added through the Toolset Types plugin, but at the moment it only supports limited types (like single line etc..etc..) of fields. The simplest workaround is to use types field shortcode directly in the Elementor's "Text Editor" widget, e.g.
[types field='field-slug' separator=', '][/types]
Where:
- Please replace "field-slug" with the actual slug of your custom field.