Then you can use shortcodes inside of it because, currently, Toolset blocks do not support archive data yet.
You can use the wpv-taxonomy-archive shortcode, the wpv-taxonomy-field shortcode, or other wpv-taxnomy-* shortcodes. Read more about the available shortcodes here
Problem:
I would like the user to be able to upload a file into a post. The field is set to allow multiple entries.
I would like the form to allow the user to upload a new file without displaying (and allowing for the deletion of) files already stored in that field for that post. So, the option would be simply to "add new". Is that possible
Solution:
That's actually not possible. But you can use two repeatable image fields and some custom code to achieve this. For example, create two repeatable image fields:
- Field Images, which will actually hold the images.
- Field Temporary_images, which will be used in the form each time.
And upon form submission, you can implement custom code that will hook into the cred_save_data action, then you can copy the values of the "Temporary_images" field into the "Images" field, and empty the values of the "Temporary_images" field. Does it make sense? https://toolset.com/documentation/programmer-reference/cred-api/#cred_save_data