FelipeP5703
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
CSS class is not picked up by blocks advanced tab
Started by: FelipeP5703 in: Toolset Professional Support |
2 | 7 | 1 year, 10 months ago | ||
Images approving system
Started by: FelipeP5703 in: Toolset Professional Support |
2 | 2 | 1 year, 10 months ago | ||
Make Custom Field Unavailable or hidden on custom search
Started by: FelipeP5703 in: Toolset Professional Support |
2 | 10 | 1 year, 10 months ago | ||
Split: Relationship between Clinic and Therapist
Started by: FelipeP5703 in: Toolset Professional Support |
2 | 12 | 1 year, 10 months ago | ||
jQuery Required field with custom error message
Started by: FelipeP5703 in: Toolset Professional Support |
2 | 4 | 1 year, 10 months ago | ||
Relationship between Clinic and Therapist
Started by: FelipeP5703 in: Toolset Professional Support |
2 | 9 | 1 year, 10 months ago | ||
Creating a New User Form just keeps loading…
Started by: FelipeP5703 in: Toolset Professional Support |
2 | 8 | 1 year, 11 months ago | ||
Information disappears after custom post is put in Draft on Quick Edit.
Started by: FelipeP5703 in: Toolset Professional Support |
2 | 3 | 3 years, 6 months ago | ||
Dynamic sub-menu based on custom field
Started by: FelipeP5703 in: Toolset Professional Support |
2 | 3 | 4 years, 10 months ago | ||
Expiration is not saving the date
1
2
Started by: FelipeP5703
in: 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 | 4 years, 11 months ago | ||
Limiting User’s ability to change custom post
1
2
3
Started by: FelipeP5703
in: 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 | 4 years, 11 months ago | ||
n the website, the plugin update is not available
Started by: FelipeP5703 in: Toolset Professional Support |
2 | 5 | 4 years, 11 months ago | ||
How to make the results show up faster?
Started by: FelipeP5703 in: Toolset Professional Support |
2 | 9 | 4 years, 11 months ago | ||
“No initial Results” in View is not working
Started by: FelipeP5703
in: 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 | 4 years, 11 months ago | ||
Back button reset query instead of keeping it.
Started by: FelipeP5703 in: Toolset Professional Support |
2 | 5 | 5 years ago |