CRED plugin allows you to build front-end forms for creating and editing content. These forms can include all the fields that belong to the content and display them with your HTML styling. CRED forms also support input validation and automatic email notifications.
When you ask for help or report issues, make sure to tell us the structure and the settings of your form.
Viewing 15 topics - 391 through 405 (of 717 total)
Problem: I have defined a custom field in my Form and set its value using a URL parameter. I would like to hide that field on the front-end, but if I use HTML comments the field value is not saved. How can I hide the field but save the value from a URL parameter?
Solution: Use CSS to hide the field itself or a container element:
Problem: I have two post types - Hosts and Structures - in a post relationship. Each User can be the author of one Host post, and can create multiple Structure posts using Forms. When the User submits a Form to create one of these Structure posts, I would like to automatically connect it to the User's Host post.
Solution: Use the cred_save_data API to trigger custom code when the Structure post is created. Use the toolset_connect_posts API to link the two posts programmatically.
Problem: I would like to use a conditional group in my post Form. The conditional should test whether or not a specific term from a custom taxonomy is selected, but I cannot figure out how to set up this conditional.
Solution: Manually edit the conditions for this conditional group and use the following syntax in the editor:
($(tax-slug) eq 'Term name')
Replace tax-slug with the slug of the custom taxonomy, and replace Term name with the name of the term to test.