jamesR-13
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Search results not as expected
Gestartet von: jamesR-13 in: Toolset Professional Support |
|
3 | 11 | vor 3 Jahren, 6 Monaten | |
Shortcode takes date field as input parameter and returns days until
Gestartet von: 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 | vor 3 Jahren, 7 Monaten | |
onclick attribute prevents saving
Gestartet von: jamesR-13 in: Toolset Professional Support |
|
2 | 8 | vor 3 Jahren, 7 Monaten | |
Delete User link not working
Gestartet von: jamesR-13 in: Toolset Professional Support |
|
2 | 15 | vor 3 Jahren, 11 Monaten | |
User form not sending notification emails
Gestartet von: jamesR-13 in: Toolset Professional Support |
|
2 | 7 | vor 3 Jahren, 11 Monaten | |
Conditionally update field value dependent on other field value using PHP
Gestartet von: jamesR-13
in: Toolset Professional Support
Problem: Solution: You can find proposed solution in this case with the following reply: Relevant Documentation: |
|
2 | 5 | vor 4 Jahren | |
Query filter for field value equal to todays date
1
2
Gestartet von: jamesR-13 in: Toolset Professional Support |
|
2 | 19 | vor 4 Jahren, 2 Monaten | |
Conditional not behaving as expected
1
2
Gestartet von: jamesR-13 in: Toolset Professional Support |
|
2 | 16 | vor 4 Jahren, 2 Monaten | |
Datepicker not working inside loop view
1
2
Gestartet von: jamesR-13 in: Toolset Professional Support |
|
2 | 24 | vor 4 Jahren, 3 Monaten | |
Date picker not working
1
2
Gestartet von: jamesR-13 in: Toolset Professional Support |
|
2 | 25 | vor 4 Jahren, 3 Monaten | |
Filter view to display UNIQUE custom field values
Gestartet von: jamesR-13 in: Toolset Professional Support |
|
2 | 6 | vor 4 Jahren, 3 Monaten | |
Ajax refresh associated view on ajax cred form success
Gestartet von: jamesR-13 in: Toolset Professional Support |
|
2 | 2 | vor 4 Jahren, 4 Monaten | |
Prepopulate add new post form from existing post
Gestartet von: jamesR-13
in: Toolset Professional Support
Problem: Solution: [cred_form form="New Car" post="145"] Relevant Documentation: |
|
2 | 3 | vor 4 Jahren, 4 Monaten | |
Text search only matching on title not working
Gestartet von: 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 | vor 4 Jahren, 4 Monaten | |
Update parent post author when creating or editing child post
1
2
Gestartet von: 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 | vor 4 Jahren, 4 Monaten |