jamesR-13
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 |
---|---|---|---|---|---|
Search results not as expected
Iniciado por: jamesR-13 en: Toolset Professional Support |
|
3 | 11 | hace 3 años, 6 meses | |
Shortcode takes date field as input parameter and returns days until
Iniciado por: jamesR-13
en: Toolset Professional Support
Problem: I am trying to create a shortcode that will take a datepicker field as input, and return the number of days until that date. Solution: You can pass the parameter to your custom shortcode with attribute, see WP document: https://developer.wordpress.org/reference/functions/add_shortcode/ For example: Relevant Documentation: |
|
2 | 4 | hace 3 años, 6 meses | |
onclick attribute prevents saving
Iniciado por: jamesR-13 en: Toolset Professional Support |
|
2 | 8 | hace 3 años, 7 meses | |
Delete User link not working
Iniciado por: jamesR-13 en: Toolset Professional Support |
|
2 | 15 | hace 3 años, 10 meses | |
User form not sending notification emails
Iniciado por: jamesR-13 en: Toolset Professional Support |
|
2 | 7 | hace 3 años, 10 meses | |
Conditionally update field value dependent on other field value using PHP
Iniciado por: jamesR-13
en: Toolset Professional Support
Problem: Solution: You can find proposed solution in this case with the following reply: Relevant Documentation: |
|
2 | 5 | hace 3 años, 11 meses | |
Query filter for field value equal to todays date
1
2
Iniciado por: jamesR-13 en: Toolset Professional Support |
|
2 | 19 | hace 4 años, 1 mes | |
Conditional not behaving as expected
1
2
Iniciado por: jamesR-13 en: Toolset Professional Support |
|
2 | 16 | hace 4 años, 2 meses | |
Datepicker not working inside loop view
1
2
Iniciado por: jamesR-13 en: Toolset Professional Support |
|
2 | 24 | hace 4 años, 2 meses | |
Date picker not working
1
2
Iniciado por: jamesR-13 en: Toolset Professional Support |
|
2 | 25 | hace 4 años, 3 meses | |
Filter view to display UNIQUE custom field values
Iniciado por: jamesR-13 en: Toolset Professional Support |
|
2 | 6 | hace 4 años, 3 meses | |
Ajax refresh associated view on ajax cred form success
Iniciado por: jamesR-13 en: Toolset Professional Support |
|
2 | 2 | hace 4 años, 3 meses | |
Prepopulate add new post form from existing post
Iniciado por: jamesR-13
en: Toolset Professional Support
Problem: Solution: [cred_form form="New Car" post="145"] Relevant Documentation: |
|
2 | 3 | hace 4 años, 3 meses | |
Text search only matching on title not working
Iniciado por: jamesR-13
en: Toolset Professional Support
Problem: I would like to search posts by title only, but it doesn't seem to be working with Relevanssi. Solution: Remove the custom code that is breaking search queries. |
|
3 | 9 | hace 4 años, 3 meses | |
Update parent post author when creating or editing child post
1
2
Iniciado por: jamesR-13
en: Toolset Professional Support
Problem: I would like to update the post author in a related post when a Form is submitted to edit a child post. Solution: Use wp_update_post in the cred_save_data callback to update a post author. Use the toolset_get_related_post API to get the parent post ID. $relationship_slug = 'your-post-relationship-slug'; $parent_id = toolset_get_related_post( $post_id, $relationship_slug ); $my_post = array( 'ID' => 123, 'post_author' => 789 ); wp_update_post( $my_post ); Relevant Documentation: |
|
2 | 16 | hace 4 años, 3 meses |