Tim Elliott
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 |
---|---|---|---|---|---|
Loading content template for a Divi post not working
Started by: Tim Elliott
in: Toolset Professional Support
Problem: When I update the search filters in my View, the updated results are formatted incorrectly. Solution: Add suppress_filters="true" to the loop template shortcode. [wpv-post-body view_template="loop-item-in-course-search-toolset-test" suppress_filters="true"] |
2 | 4 | 6 years ago | ||
Call to undefined function get_current_screen() in is_block php
Started by: Tim Elliott
in: Toolset Professional Support
Problem: Withe Toolset Types plugin version 3.2 + Toolset form plugin version 2.2, there are some PHP errors: Fatal error: Uncaught Error: Call to undefined function get_current_screen() Solution: This is caused by Toolse fields, some of which have default validation rules, so no need to check for specific field types. Types 3.2.1 released with a fix for problem, you can download it here: https://toolset.com/account/downloads/ Relevant Documentation: |
3 | 11 | 6 years, 2 months ago | ||
Add more than one product to cart with cred form
Started by: Tim Elliott in: Toolset Professional Support |
2 | 6 | 6 years, 2 months ago | ||
WooCommerce Featured Flag in Views Filter
Started by: Tim Elliott
in: Toolset Professional Support
Problem: Solution: |
2 | 4 | 6 years, 4 months ago | ||
Different template for different products
Started by: Tim Elliott
in: Toolset Professional Support
Problem: Solution: There is a workaround described in the main thread below to be able to switch between each depending on whether the product is a normal product or a Custom Product Box product. |
2 | 10 | 6 years, 4 months ago | ||
Add Price Range Filters to Views Archive
Started by: Tim Elliott
in: Toolset Professional Support
Problem: Solution: You can find a proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 4 months ago | ||
Custom Field dropdown has extra blank entry that is selected by default
Started by: Tim Elliott in: Toolset Professional Support |
1 | 2 | 6 years, 5 months ago | ||
Add a filterable taxonomy selector on a post custom search
Started by: Tim Elliott in: Toolset Professional Support |
2 | 2 | 6 years, 5 months ago | ||
Taxonomy count for a post
Started by: Tim Elliott
in: Toolset Professional Support
Problem: The issue here is that the user wanted to count the number of terms that is attached to a post. Solution: // Add Shortcode function count_post_terms( $atts ) { // Attributes $atts = shortcode_atts( array( 'post_id' => '', 'taxonomy' => '', ), $atts ); $terms = wp_get_post_terms( $atts['post_id'], $atts['taxonomy']); return count($terms); } add_shortcode( 'count_post_terms', 'count_post_terms' ); Add the shortcode above to your functions.php file and you can use this shortcode [count_post_terms] to count the terms attached to a post. The exact example is. 1 |
2 | 3 | 6 years, 6 months ago | ||
Claim ownership of a specific post with admin approval
Started by: Tim Elliott in: Toolset Professional Support |
1 | 2 | 6 years, 7 months ago | ||
Adding text attribute to a product when adding it to cart using CRED form.
Started by: Tim Elliott in: Toolset Professional Support |
2 | 2 | 6 years, 7 months ago | ||
Divi builder not loading when views activated
Started by: Tim Elliott
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 5 | 6 years, 7 months ago |