Problem: In my CRED form I allow the User to upload a file. I would like to copy the file name into another custom field, but modify the file name and extension.
Solution: Use the CRED API cred_save_data to copy and manipulate the field value, then store it into another field.
add_action('cred_save_data', 'save_pdf_image',10,2); function save_pdf_image($post_id, $form_data) { // if a specific form if ($form_data['id']==261) { if (isset($_POST['wpcf-pdf'])) { $image_url = str_replace('.pdf', '-pdf.jpg', get_post_meta( $post_id, 'wpcf-pdf', true) ); update_post_meta($post_id, 'wpcf-pdf_image_url', $image_url); } } }
Relevant Documentation:
https://codex.wordpress.org/Function_Reference/update_post_meta
https://toolset.com/documentation/programmer-reference/cred-api/#cred_save_data
This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.
Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
8:00 – 12:00 | 8:00 – 12:00 | 8:00 – 12:00 | 8:00 – 12:00 | 8:00 – 12:00 | - | - |
13:00 – 17:00 | 13:00 – 17:00 | 13:00 – 17:00 | 13:00 – 17:00 | 13:00 – 17:00 | - | - |
Supporter timezone: America/New_York (GMT-04:00)
This topic contains 2 replies, has 2 voices.
Last updated by 6 years, 8 months ago.
Assisted by: Christian Cox.