rafaelE-3
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
Divi cache not cleaning with toolset
Iniciado por: rafaelE-3 en: Toolset Professional Support |
2 | 4 | hace 3 años, 1 mes | ||
Duplicate a post and the relationship
Iniciado por: rafaelE-3 en: Toolset Professional Support |
2 | 2 | hace 4 años, 11 meses | ||
Duplicate post with todays date and +365 finish day
Iniciado por: rafaelE-3
en: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply Relevant Documentation: |
2 | 6 | hace 6 años, 4 meses | ||
Duplicate post from list without using forms
Iniciado por: rafaelE-3 en: Toolset Professional Support |
2 | 4 | hace 6 años, 5 meses | ||
Create a user active session control
Iniciado por: rafaelE-3
en: 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 | hace 6 años, 7 meses | ||
Filter view by parent field
Iniciado por: rafaelE-3 en: Soporte profesional de Toolset |
2 | 3 | hace 6 años, 7 meses | ||
add default value to a filtered view
Iniciado por: rafaelE-3 en: Soporte profesional de Toolset |
2 | 3 | hace 6 años, 7 meses | ||
Create a dinamic Smart Slider
Iniciado por: rafaelE-3 en: Toolset Professional Support |
2 | 4 | hace 6 años, 9 meses | ||
Save a document field to another field changing extension
Iniciado por: rafaelE-3
en: 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 | hace 6 años, 9 meses | ||
Display parents of current user in a select
Iniciado por: rafaelE-3
en: 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 | hace 6 años, 9 meses |