rafaelE-3
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 |
---|---|---|---|---|---|
Divi cache not cleaning with toolset
Started by: rafaelE-3 in: Toolset Professional Support |
2 | 4 | 3 years, 1 month ago | ||
Duplicate a post and the relationship
Started by: rafaelE-3 in: Toolset Professional Support |
2 | 2 | 4 years, 10 months ago | ||
Duplicate post with todays date and +365 finish day
Started by: rafaelE-3
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply Relevant Documentation: |
2 | 6 | 6 years, 4 months ago | ||
Duplicate post from list without using forms
Started by: rafaelE-3 in: Toolset Professional Support |
2 | 4 | 6 years, 4 months ago | ||
Create a user active session control
Started by: rafaelE-3
in: Toolset Professional Support
Problem: Solution: Unfortunately we are not able to assist with this since it is not a part of what our plugins can do and would require custom code to achieve. However I was doing some searching and was able to find this plugin here. |
2 | 3 | 6 years, 6 months ago | ||
Filter view by parent field
Started by: rafaelE-3 in: Soporte profesional de Toolset |
2 | 3 | 6 years, 7 months ago | ||
add default value to a filtered view
Started by: rafaelE-3 in: Soporte profesional de Toolset |
2 | 3 | 6 years, 7 months ago | ||
Create a dinamic Smart Slider
Started by: rafaelE-3 in: Toolset Professional Support |
2 | 4 | 6 years, 8 months ago | ||
Save a document field to another field changing extension
Started by: rafaelE-3
in: Toolset Professional Support
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: |
2 | 3 | 6 years, 8 months ago | ||
Display parents of current user in a select
Started by: rafaelE-3
in: Toolset Professional Support
Problem: The problem occurs because when there are more than 15 possible parents to display the select2 library is invoked on the select field to manage the long list of options, and this breaks the custom code. Solution: |
2 | 3 | 6 years, 8 months ago |