jamesR-13
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
Search results not as expected
Commencé par : jamesR-13 in: Toolset Professional Support |
|
3 | 11 | Il y a 3 années et 6 mois | |
Shortcode takes date field as input parameter and returns days until
Commencé par : jamesR-13
in: 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 | Il y a 3 années et 6 mois | |
onclick attribute prevents saving
Commencé par : jamesR-13 in: Toolset Professional Support |
|
2 | 8 | Il y a 3 années et 6 mois | |
Delete User link not working
Commencé par : jamesR-13 in: Toolset Professional Support |
|
2 | 15 | Il y a 3 années et 10 mois | |
User form not sending notification emails
Commencé par : jamesR-13 in: Toolset Professional Support |
|
2 | 7 | Il y a 3 années et 10 mois | |
Conditionally update field value dependent on other field value using PHP
Commencé par : jamesR-13
in: Toolset Professional Support
Problem: Solution: You can find proposed solution in this case with the following reply: Relevant Documentation: |
|
2 | 5 | Il y a 3 années et 11 mois | |
Query filter for field value equal to todays date
1
2
Commencé par : jamesR-13 in: Toolset Professional Support |
|
2 | 19 | Il y a 4 années et 1 mois | |
Conditional not behaving as expected
1
2
Commencé par : jamesR-13 in: Toolset Professional Support |
|
2 | 16 | Il y a 4 années et 2 mois | |
Datepicker not working inside loop view
1
2
Commencé par : jamesR-13 in: Toolset Professional Support |
|
2 | 24 | Il y a 4 années et 2 mois | |
Date picker not working
1
2
Commencé par : jamesR-13 in: Toolset Professional Support |
|
2 | 25 | Il y a 4 années et 2 mois | |
Filter view to display UNIQUE custom field values
Commencé par : jamesR-13 in: Toolset Professional Support |
|
2 | 6 | Il y a 4 années et 3 mois | |
Ajax refresh associated view on ajax cred form success
Commencé par : jamesR-13 in: Toolset Professional Support |
|
2 | 2 | Il y a 4 années et 3 mois | |
Prepopulate add new post form from existing post
Commencé par : jamesR-13
in: Toolset Professional Support
Problem: Solution: [cred_form form="New Car" post="145"] Relevant Documentation: |
|
2 | 3 | Il y a 4 années et 3 mois | |
Text search only matching on title not working
Commencé par : jamesR-13
in: 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 | Il y a 4 années et 3 mois | |
Update parent post author when creating or editing child post
1
2
Commencé par : jamesR-13
in: 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 | Il y a 4 années et 3 mois |