FelipeP5703
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 |
---|---|---|---|---|---|
CSS class is not picked up by blocks advanced tab
Iniciado por: FelipeP5703 en: Toolset Professional Support |
2 | 7 | hace 1 año, 10 meses | ||
Images approving system
Iniciado por: FelipeP5703 en: Toolset Professional Support |
2 | 2 | hace 1 año, 10 meses | ||
Make Custom Field Unavailable or hidden on custom search
Iniciado por: FelipeP5703 en: Toolset Professional Support |
2 | 10 | hace 1 año, 10 meses | ||
Split: Relationship between Clinic and Therapist
Iniciado por: FelipeP5703 en: Toolset Professional Support |
2 | 12 | hace 1 año, 10 meses | ||
jQuery Required field with custom error message
Iniciado por: FelipeP5703 en: Toolset Professional Support |
2 | 4 | hace 1 año, 10 meses | ||
Relationship between Clinic and Therapist
Iniciado por: FelipeP5703 en: Toolset Professional Support |
2 | 9 | hace 1 año, 10 meses | ||
Creating a New User Form just keeps loading…
Iniciado por: FelipeP5703 en: Toolset Professional Support |
2 | 8 | hace 1 año, 10 meses | ||
Information disappears after custom post is put in Draft on Quick Edit.
Iniciado por: FelipeP5703 en: Toolset Professional Support |
2 | 3 | hace 3 años, 5 meses | ||
Dynamic sub-menu based on custom field
Iniciado por: FelipeP5703 en: Toolset Professional Support |
2 | 3 | hace 4 años, 9 meses | ||
Expiration is not saving the date
1
2
Iniciado por: FelipeP5703
en: Toolset Professional Support
Problem: PHP error after save the post: Solution: This is a known issue with WordPress 5.3, and has been fixed in the latest release of Toolset Types, you can download it here: https://toolset.com/account/downloads/ Relevant Documentation: |
3 | 28 | hace 4 años, 10 meses | ||
Limiting User’s ability to change custom post
1
2
3
Iniciado por: FelipeP5703
en: Toolset Professional Support
Problem: I'm wondering if there is a way to limit the User from changing his/her custom post to a X number of times a month. For example, I only want to allow the User to change images twice a month. Solution: There isn't such kind of built-in feature, you can consider custom codes: For example: Relevant Documentation: |
3 | 33 | hace 4 años, 10 meses | ||
n the website, the plugin update is not available
Iniciado por: FelipeP5703 en: Toolset Professional Support |
2 | 5 | hace 4 años, 10 meses | ||
How to make the results show up faster?
Iniciado por: FelipeP5703 en: Toolset Professional Support |
2 | 9 | hace 4 años, 11 meses | ||
«No initial Results» in View is not working
Iniciado por: FelipeP5703
en: Toolset Professional Support
Problem: I would like to show no initial results in my View, but the code snippet doesn't seem to be working correctly. I have one Query Filter predefined. Solution: You would have to modify the custom code to account for that one Query Filter. The following modification tests the number of Query Filters, and only shows results if the User has selected another filter on the front-end: add_filter( 'wpv_filter_query_post_process', 'tssnippet_no_initial_results_one_pre', 10, 3 ); function tssnippet_no_initial_results_one_pre( $query_results, $view_settings, $view_id ) { $target_views = array( 4407 ); if ( ! in_array( $view_id, $target_views ) ) { return $query_results; } // if there is only the one predefined custom field filter plus the relation, drop all results if ( sizeof($query_results->query['meta_query']) == 2 && ! isset( $query_results->query['tax_query'] ) && ! isset( $query_results->query['s'] ) ) { $query_results->posts = array(); $query_results->post_count = 0; $query_results->found_posts = 0; } return $query_results; } Relevant Documentation: |
2 | 11 | hace 4 años, 11 meses | ||
Back button reset query instead of keeping it.
Iniciado por: FelipeP5703 en: Toolset Professional Support |
2 | 5 | hace 4 años, 11 meses |