|
Populating child CRED form with data from parent post
Started by: Michael van der Steen
in: Toolset Professional Support
Quick solution available
|
|
2 |
3 |
7 years, 4 months ago
Michael van der Steen
|
|
Integrating another plugin for image upload
Started by: Alan Murray
in: Toolset Professional Support
|
|
2 |
4 |
7 years, 4 months ago
Christian Cox
|
|
CRED: Add Child Content and Update Parent Attribute
Started by: Noriko Sugiura
in: Toolset Professional Support
Quick solution available
Problem:
In a Parent/Child Post relationship, is it possible to update an attribute (or more) on the parent post when submitting new content for the child post via a CRED form?
Solution:
Please modify and add following code in your theme’s or child theme’s functions.php file:
/* Update Parent Field on Child Post creation */
add_action('cred_save_data', 'update_parent_field_on_child_creation',10,2);
function update_parent_field_on_child_creation($post_id, $form_data)
{
// if a specific form
if ( $form_data['id'] == 2448 ) {
$parent_id = get_post_meta($post_id, '_wpcf_belongs_property_id', true); // property = your parent post type name
update_post_meta($parent_id, 'wpcf-status', 'closed'); // wpcf-status = your field name
// closed = your field new value
}
}
|
|
2 |
3 |
7 years, 4 months ago
Noriko Sugiura
|
|
Reviews on CPT – stuck with linking the CRED form
Started by: pierreV-2
in: Toolset Professional Support
Quick solution available
|
|
2 |
7 |
7 years, 4 months ago
pierreV-2
|
|
Front End Form Submission – then display the entries SPECIFIC to that User
Started by: JeanJ2365
in: Toolset Professional Support
|
|
2 |
4 |
7 years, 4 months ago
JeanJ2365
|
|
I need to make a button for users
Started by: mindaugasU
in: Types Community Support
|
|
2 |
2 |
7 years, 4 months ago
Christian Cox
|
|
Use of "_wpcf_belongs_[parent-slug]_id" in a select field
Started by: Kostas
in: Toolset Professional Support
|
|
2 |
8 |
7 years, 4 months ago
Shane
|
|
WPBruiser is compatible with CRED forms (User, …)?
Started by: Francisco Ramón Molina Busquiel
in: Toolset Professional Support
|
|
2 |
4 |
7 years, 4 months ago
Luo Yang
|
|
How display CRED post edit form with post relationships?
Started by: chuckH
in: Toolset Professional Support
|
|
3 |
8 |
7 years, 4 months ago
Luo Yang
|
|
Date picker trowing an error in console
Started by: enricoC-2
in: Toolset Professional Support
|
|
3 |
17 |
7 years, 4 months ago
enricoC-2
|
|
User Taxonomy
Started by: frankK
in: Toolset Professional Support
|
|
2 |
2 |
7 years, 5 months ago
Noman
|
|
Filter choice on a CRED Form depending on the parent relationships
Started by: xavierC-2
in: Toolset Professional Support
|
|
2 |
11 |
7 years, 5 months ago
Christian Cox
|
|
Conditional otuput from CRED post form to Custom Post Type
Started by: sinisaB
in: Toolset Professional Support
|
|
2 |
8 |
7 years, 5 months ago
Shane
|
|
How-to: Populating options in a generic checkboxes field with views shortcode
Started by: markL
in: Toolset Professional Support
Quick solution available
|
|
2 |
3 |
7 years, 5 months ago
markL
|
|
Enfold Tabs Shortcode – New Conflict Since Upgrade Of Toolset
Started by: stephenO-3
in: Toolset Professional Support
|
|
2 |
2 |
7 years, 5 months ago
Carlos Rojas
|