Steve
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 |
---|---|---|---|---|---|
Custom post urls redirect unexpectedly to site root
Started by: Steve
in: Toolset Professional Support
Problem: Custom posts are unexpectedly being redirected to the home page. Solution: Check the post type options to be sure publicly_queryable is checked. |
2 | 3 | 4 years, 5 months ago | ||
Split: cred commerce not adding product to cart
Started by: Steve in: Toolset Professional Support |
3 | 10 | 4 years, 7 months ago | ||
cred commerce
1
2
Started by: Steve in: Toolset Professional Support |
2 | 31 | 4 years, 8 months ago | ||
cred commerce not putting item in cart
Started by: Steve in: Toolset Professional Support |
2 | 8 | 4 years, 10 months ago | ||
multiple conditional statements in a view
Started by: Steve
in: Toolset Professional Support
Problem: I have a cpt with a date field in it and want to display in a view all records that either have no date at all, or where the date value is gte today() Solution: You can try as blew: Relevant Documentation: |
2 | 9 | 5 years, 1 month ago | ||
view to show current or future events from The Events Calendar
Started by: Steve
in: Toolset Professional Support
Problem: I would like to use Views to display current or future events created by The Events Calendar, but the custom code I have in place isn't working as expected. Solution: Use the following custom filter manipulation to filter events: toolset_snippet_security_check() or die( 'Direct access is not allowed' ); /** * Filter event query to show future events */ function tssupp_filter_event_query( $view_args, $view_settings, $view_id ){ if ( in_array( $view_id, array( 6090,3499,4451,42214 ) ) ) { // Edit view IDs if ( ! isset( $view_args['meta_query'] ) ) { $view_args['meta_query'] = array(); } $today = strtotime("0:00"); $meta_query = array( 'key' => '_EventStartDate', 'value' => date("Y-m-d H:i:s", $today), 'type' => 'DATETIME', 'compare' => '>=' ); $view_args['meta_query'][] = $meta_query; } return $view_args; } add_filter( 'wpv_filter_query', 'tssupp_filter_event_query', 101, 3 ); Relevant Documentation: |
2 | 15 | 5 years, 2 months ago | ||
create field group to be used on woocommerce category page
Started by: Steve in: Toolset Professional Support |
2 | 5 | 5 years, 5 months ago | ||
cred image uploading and management
Started by: Steve in: Toolset Professional Support |
2 | 3 | 5 years, 5 months ago | ||
link to a map and open a marker
Started by: Steve in: Toolset Professional Support |
2 | 2 | 5 years, 6 months ago | ||
Cant make excerpt more null
Started by: Steve in: Toolset Professional Support |
2 | 3 | 5 years, 7 months ago | ||
Error in types prevents viewing plugins page
Started by: Steve
in: Toolset Professional Support
Problem: I am unable to access the Plugins page after updating Types, and a fatal error occurs. Solution: Activate Types, go to the core WP updates page, and click "Check for Updates". Then return to the plugins page to verify the workaround. |
2 | 3 | 5 years, 8 months ago | ||
Author Role cant see custom fields
Started by: Steve in: Toolset Professional Support |
3 | 16 | 5 years, 10 months ago | ||
Function that Christian helped me with 2 years ago
Started by: Steve in: Toolset Professional Support |
2 | 8 | 5 years, 11 months ago | ||
Need help with term archive template
Started by: Steve
in: Toolset Professional Support
Problem: The issue here is that the user wanted to display their taxonomy term description. Solution: This can be done by using the shortcode below. |
2 | 9 | 5 years, 11 months ago | ||
views creates 502 on a page and aslo prevents new pages from being creat
1
2
Started by: Steve in: Toolset Professional Support |
2 | 16 | 6 years, 3 months ago |