larryL
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Split: the select2 does not always work
Started by: larryL in: Toolset Professional Support |
2 | 7 | 4 years, 2 months ago | ||
Dynamic Field values from CPT
1
2
Started by: larryL in: Toolset Professional Support |
2 | 26 | 4 years, 3 months ago | ||
Dynamic Field values from CPT
Started by: larryL
in: Toolset Professional Support
Problem: I want to create a select field with multiple options, and set the value of another custom field depending on the value selected in the select field. Solution: You can use custom code with the cred_save_data API to get the selected value from one field and save a corresponding value into a Types custom field programmatically. You can find the field selections in the $_POST superglobal. Types fields have a key of "wpcf-" plus the field slug. Generic fields have a key identical to the field slug. So if the select field is a Types field with the slug "select-field", then you would be able to get the selected value like so: $_POST['wpcf-select-field'] If it is a generic field with the slug "select-field", then you would be able to get the selected value like so: $_POST['select-field'] Use the WP function update_post_meta to set a Types field value programmatically. A full example: add_action('cred_save_data', 'tssupp_set_selected_value',10,2); function tssupp_set_selected_value($post_id, $form_data) { $forms = array( 123 ); if ( in_array( $form_data['id'], $forms ) ) { $selected = $_POST['wpcf-select-field']; update_post_meta( $post_id, 'wpcf-points-field', $selected); } } You would change 123 to be the numeric ID of the Form, wpcf-select-field to be the slug of the select field (with the wpcf- prefix if this is a Types field), and wpcf-points-field to be the slug of the points field (with the wpcf- prefix if this is a Types field). That would save the selected value of the select field into the points field when the Form is submitted. Relevant Documentation: |
2 | 5 | 4 years, 3 months ago | ||
Dynamic Field values from CPT
Started by: larryL in: Toolset Professional Support |
2 | 11 | 4 years, 3 months ago | ||
user nicknames not loading in select field
Started by: larryL
in: Toolset Professional Support
Problem: Solution: |
2 | 5 | 4 years, 3 months ago | ||
View with weekday filtering
Started by: larryL in: Toolset Professional Support |
2 | 9 | 4 years, 3 months ago | ||
Color or Background change using Conditionals in Views
1
2
Started by: larryL in: Toolset Professional Support |
2 | 24 | 4 years, 3 months ago | ||
Split: Call the post title from one CPT into the CRED form of another
Started by: larryL in: Toolset Professional Support |
2 | 11 | 4 years, 3 months ago | ||
CRED display of conditional fields
Started by: larryL in: Toolset Professional Support |
2 | 3 | 4 years, 3 months ago | ||
CRED add user field to post field
Started by: larryL in: Toolset Professional Support |
2 | 7 | 4 years, 3 months ago | ||
Pass value to number field in CRED
Started by: larryL in: Toolset Professional Support |
2 | 5 | 4 years, 3 months ago | ||
Pass post-body to CRED using url parameter
Started by: larryL in: Toolset Professional Support |
1 | 2 | 4 years, 3 months ago | ||
Multiple Instance Field Output Formatting
Started by: larryL
in: Toolset Professional Support
Problem: I have a few multiple Instance fields (Single Line) that contain multiple lines of data. I would like to display the data in a pseudo table format. Solution: You can setup the HTML table tags with [wpv-for-each] to display the result as what you want, Relevant Documentation: https://toolset.com/documentation/programmer-reference/views/views-shortcodes/#wpv-for-each |
2 | 6 | 4 years, 4 months ago | ||
Automatically linking related post types
Started by: larryL in: Toolset Professional Support |
2 | 2 | 4 years, 4 months ago | ||
Issue with function
Started by: larryL in: Toolset Professional Support |
2 | 15 | 4 years, 4 months ago |