jamesR-13
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 |
---|---|---|---|---|---|
Search results not as expected
Started by: jamesR-13 in: Toolset Professional Support |
3 | 11 | 3 years ago | ||
Shortcode takes date field as input parameter and returns days until
Started by: 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 | 3 years ago | ||
onclick attribute prevents saving
Started by: jamesR-13 in: Toolset Professional Support |
2 | 8 | 3 years, 1 month ago | ||
Delete User link not working
Started by: jamesR-13 in: Toolset Professional Support |
2 | 15 | 3 years, 4 months ago | ||
User form not sending notification emails
Started by: jamesR-13 in: Toolset Professional Support |
2 | 7 | 3 years, 4 months ago | ||
Conditionally update field value dependent on other field value using PHP
Started by: jamesR-13
in: Toolset Professional Support
Problem: Solution: You can find proposed solution in this case with the following reply: Relevant Documentation: |
2 | 5 | 3 years, 5 months ago | ||
Query filter for field value equal to todays date
1
2
Started by: jamesR-13 in: Toolset Professional Support |
2 | 19 | 3 years, 7 months ago | ||
Conditional not behaving as expected
Started by: jamesR-13 in: Toolset Professional Support |
2 | 16 | 3 years, 8 months ago | ||
Datepicker not working inside loop view
1
2
Started by: jamesR-13 in: Toolset Professional Support |
2 | 24 | 3 years, 9 months ago | ||
Date picker not working
1
2
Started by: jamesR-13 in: Toolset Professional Support |
2 | 25 | 3 years, 9 months ago | ||
Filter view to display UNIQUE custom field values
Started by: jamesR-13 in: Toolset Professional Support |
2 | 6 | 3 years, 9 months ago | ||
Ajax refresh associated view on ajax cred form success
Started by: jamesR-13 in: Toolset Professional Support |
2 | 2 | 3 years, 10 months ago | ||
Prepopulate add new post form from existing post
Started by: jamesR-13
in: Toolset Professional Support
Problem: Solution: [cred_form form="New Car" post="145"] Relevant Documentation: |
2 | 3 | 3 years, 10 months ago | ||
Text search only matching on title not working
Started by: 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 | 3 years, 10 months ago | ||
Update parent post author when creating or editing child post
Started by: 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 | 3 years, 10 months ago |