julieP
Fils de soutien créés au cours des 30 derniers jours : 2
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
Date Field update_post_meta not firing
Commencé par : 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 | Il y a 4 années et 3 mois | ||
Toolset chat support ticket by julieP – 1594996775
Commencé par : julieP in: Chat Support |
1 | 2 |
Il y a 4 années et 4 mois
|
||
Understanding Database Entries
Commencé par : julieP in: Toolset Professional Support |
2 | 5 | Il y a 4 années et 4 mois | ||
Types 3.3.11
Commencé par : julieP in: Toolset Professional Support |
3 | 4 | Il y a 4 années et 5 mois | ||
Media Fields & Uploads
1
2
Commencé par : julieP in: Toolset Professional Support |
2 | 17 | Il y a 4 années et 5 mois | ||
Capabilities
Commencé par : julieP in: Toolset Professional Support |
2 | 5 | Il y a 4 années et 5 mois | ||
The Forum (again)
Commencé par : julieP in: Toolset Professional Support |
3 | 7 | Il y a 4 années et 5 mois | ||
Views Module – Legacy plugin or not???
Commencé par : julieP in: Toolset Professional Support |
2 | 7 | Il y a 4 années et 6 mois | ||
Multiple CRED Forms on Same Page
Commencé par : julieP in: Toolset Professional Support |
2 | 4 | Il y a 4 années et 7 mois | ||
The Forum
Commencé par : julieP in: Toolset Professional Support |
4 | 16 | Il y a 4 années et 7 mois | ||
Custom Date Fields & CRED Expiry Field
Commencé par : 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 | Il y a 4 années et 7 mois | ||
CRED Forms & Accessibility (WCAG)
Commencé par : julieP in: Toolset Professional Support |
2 | 7 | Il y a 4 années et 7 mois | ||
CRED Redirects
1
2
3
Commencé par : julieP in: Toolset Professional Support |
4 | 36 | Il y a 4 années et 9 mois | ||
Related Posts Function
Commencé par : 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 | Il y a 4 années et 9 mois | ||
Maps & Convert Cache
Commencé par : julieP in: Toolset Professional Support |
2 | 3 | Il y a 4 années et 9 mois |