tomaszW-2
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 |
---|---|---|---|---|---|
Toolset Views order by custom field not working in different languages WPML
Started by: tomaszW-2 in: Toolset Professional Support |
2 | 3 | 3 years, 7 months ago | ||
A lot of unnecessary CSS and JS in HTML
Started by: tomaszW-2 in: Toolset Professional Support |
2 | 5 | 3 years, 11 months ago | ||
Views display content correctly on backend but not on frontent Views & WPML
Started by: tomaszW-2 in: Toolset Professional Support |
2 | 16 | 4 years ago | ||
Compatibility problem – Toolset Views and Foobox Foogallery
Started by: tomaszW-2 in: Toolset Professional Support |
3 | 13 | 4 years, 6 months ago | ||
WP Views conflict with Woocommerce – blank Checkout page
Started by: tomaszW-2 in: Toolset Professional Support |
2 | 4 | 5 years, 7 months ago | ||
The Event Calendar Pro – show only one event if it repeats on same day
Started by: tomaszW-2 in: Toolset Professional Support |
2 | 10 | 5 years, 11 months ago | ||
Views and Event Calendar Pro – date offset – how show events from today
Started by: tomaszW-2
in: Toolset Professional Support
Problem: I am using Event Calendar Pro to create and manage events. I would like to create a View of all current and upcoming events, but the Query Filter doesn't seem to be working as expected. Solution: Use custom code to adjust the Query Filter to respond to the date format used by Event Calendar Pro. function tssupp_filter_event_query( $view_args, $view_settings, $view_id ){ if ( in_array( $view_id, array( 12345 ) ) ) { // Edit view IDs if ( ! isset( $view_args['meta_query'] ) ) { $view_args['meta_query'] = array(); } $meta_query = array( 'key' => '_EventEndDate', 'value' => date("Y-m-d H:i:s"), 'type' => 'NUMBER', 'compare' => '>' ); $view_args['meta_query'][] = $meta_query; } return $view_args; } add_filter( 'wpv_filter_query', 'tssupp_filter_event_query', 101, 3 ); Relevant Documentation: |
2 | 4 | 5 years, 12 months ago | ||
Issue with displaying woocommerce categories
Started by: tomaszW-2 in: Toolset Professional Support |
1 | 2 | 6 years ago | ||
Views – Woocommerce Category list display only if there is a product
Started by: tomaszW-2 in: Toolset Professional Support |
2 | 9 | 6 years ago | ||
No woocommerce products listing in Starter Theme and Layouts
Started by: tomaszW-2 in: Toolset Professional Support |
1 | 2 | 6 years, 2 months ago | ||
There is no Starter Theme, what now?
Started by: tomaszW-2
in: Toolset Professional Support
Problem: The issue was that the toolset starter theme was deprecated. Solution: I must apologize for the inconvenience this has caused you. I can admit that better communication was needed with customers before we stop supporting this theme. |
2 | 2 | 6 years, 2 months ago |