julieP
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
Date Field update_post_meta not firing
Iniciado por: julieP
en: 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 | hace 4 años, 5 meses | ||
Toolset chat support ticket by julieP – 1594996775
Iniciado por: julieP en: Chat Support |
1 | 2 |
hace 4 años, 6 meses
|
||
Understanding Database Entries
Iniciado por: julieP en: Toolset Professional Support |
2 | 5 | hace 4 años, 6 meses | ||
Types 3.3.11
Iniciado por: julieP en: Toolset Professional Support |
3 | 4 | hace 4 años, 6 meses | ||
Media Fields & Uploads
1
2
Iniciado por: julieP en: Toolset Professional Support |
2 | 17 | hace 4 años, 6 meses | ||
Capabilities
Iniciado por: julieP en: Toolset Professional Support |
2 | 5 | hace 4 años, 7 meses | ||
The Forum (again)
Iniciado por: julieP en: Toolset Professional Support |
3 | 7 | hace 4 años, 7 meses | ||
Views Module – Legacy plugin or not???
Iniciado por: julieP en: Toolset Professional Support |
2 | 7 | hace 4 años, 8 meses | ||
Multiple CRED Forms on Same Page
Iniciado por: julieP en: Toolset Professional Support |
2 | 4 | hace 4 años, 8 meses | ||
The Forum
Iniciado por: julieP en: Toolset Professional Support |
4 | 16 | hace 4 años, 9 meses | ||
Custom Date Fields & CRED Expiry Field
Iniciado por: julieP
en: 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 | hace 4 años, 9 meses | ||
CRED Forms & Accessibility (WCAG)
Iniciado por: julieP en: Toolset Professional Support |
2 | 7 | hace 4 años, 9 meses | ||
CRED Redirects
1
2
3
Iniciado por: julieP en: Toolset Professional Support |
4 | 36 | hace 4 años, 10 meses | ||
Related Posts Function
Iniciado por: julieP
en: 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 | hace 4 años, 10 meses | ||
Maps & Convert Cache
Iniciado por: julieP en: Toolset Professional Support |
2 | 3 | hace 4 años, 10 meses |