julieP
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 |
---|---|---|---|---|---|
Date Field update_post_meta not firing
Gestartet von: julieP
in: Toolset Professional Support
Problem: I would like to use update_post_meta to listen for changed postmeta values, but the hook does not seem to fire for date fields. Solution: That is correct. Date fields are removed, then readded each time an edit post form is submitted. Use the add_post_meta hook to listen for this event instead. |
2 | 6 | vor 4 Jahren, 5 Monaten | ||
Toolset chat support ticket by julieP – 1594996775
Gestartet von: julieP in: Chat Support |
1 | 2 |
vor 4 Jahren, 6 Monaten
|
||
Understanding Database Entries
Gestartet von: julieP in: Toolset Professional Support |
2 | 5 | vor 4 Jahren, 6 Monaten | ||
Types 3.3.11
Gestartet von: julieP in: Toolset Professional Support |
3 | 4 | vor 4 Jahren, 6 Monaten | ||
Media Fields & Uploads
1
2
Gestartet von: julieP in: Toolset Professional Support |
2 | 17 | vor 4 Jahren, 6 Monaten | ||
Capabilities
Gestartet von: julieP in: Toolset Professional Support |
2 | 5 | vor 4 Jahren, 7 Monaten | ||
The Forum (again)
Gestartet von: julieP in: Toolset Professional Support |
3 | 7 | vor 4 Jahren, 7 Monaten | ||
Views Module – Legacy plugin or not???
Gestartet von: julieP in: Toolset Professional Support |
2 | 7 | vor 4 Jahren, 8 Monaten | ||
Multiple CRED Forms on Same Page
Gestartet von: julieP in: Toolset Professional Support |
2 | 4 | vor 4 Jahren, 8 Monaten | ||
The Forum
Gestartet von: julieP in: Toolset Professional Support |
4 | 16 | vor 4 Jahren, 9 Monaten | ||
Custom Date Fields & CRED Expiry Field
Gestartet von: julieP
in: Toolset Professional Support
Problem: Even though the post expiration timestamp in the database is identical to a custom field timestamp in the database, they are displayed on the front-end as different times. Solution: Custom fields are assumed to be entered as GMT, and will be displayed as GMT. Post expiration is assumed to be entered as local time, and will be displayed as local time. Unfortunately there is no simple workaround right now. |
2 | 5 | vor 4 Jahren, 9 Monaten | ||
CRED Forms & Accessibility (WCAG)
Gestartet von: julieP in: Toolset Professional Support |
2 | 7 | vor 4 Jahren, 9 Monaten | ||
CRED Redirects
1
2
3
Gestartet von: julieP in: Toolset Professional Support |
4 | 36 | vor 4 Jahren, 10 Monaten | ||
Related Posts Function
Gestartet von: julieP
in: Toolset Professional Support
Problem: I am trying to use a meta_query with the post relationships API toolset_get_related_posts, but it doesn't seem to be filtering as expected. Solution: Some complex meta_queries, like using "IN" or "AND" with more than one term, fail with the post relationships API. Instead, you should use a standard WP_Query and add the toolset_relationships clause: $args = array( 'numberposts' => -1, 'post_type' => 'child-post-type-slug', 'orderby' => 'post_date', 'order' => 'DESC', 'meta_query' => array( 'relation' => 'AND', array( 'key' => 'wpcf-colour', 'value' => 'Red', 'compare' => '=' ), array( 'key' => 'wpcf-description', 'value' => 'Ball', 'compare' => '=' ) ), 'toolset_relationships' => array( 'role' => 'child', 'related_to' => $post_id, 'relationship' => 'relationship-slug' ), ); $child_query = new WP_Query( $args ); |
2 | 3 | vor 4 Jahren, 10 Monaten | ||
Maps & Convert Cache
Gestartet von: julieP in: Toolset Professional Support |
2 | 3 | vor 4 Jahren, 10 Monaten |