jasonw-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 |
---|---|---|---|---|---|
Map search drop downs
Started by: jasonw-2 in: Toolset Professional Support |
2 | 6 | 9 months, 3 weeks ago | ||
Workaround for Templates (Single Post)
Started by: jasonw-2 in: Toolset Professional Support |
2 | 10 | 10 months ago | ||
Ajax pagination
Started by: jasonw-2 in: Toolset Professional Support |
2 | 3 | 10 months, 3 weeks ago | ||
Getting Submit Error on Edit Post
Started by: jasonw-2 in: Toolset Professional Support |
2 | 7 | 11 months ago | ||
Flexslider working when logged in but not when logged out
Started by: jasonw-2 in: Toolset Professional Support |
1 | 1 | 11 months, 2 weeks ago | ||
In a view template: Listing main categories with children
Started by: jasonw-2 in: Toolset Professional Support |
2 | 9 | 1 year, 5 months ago | ||
Edit Gallery
Started by: jasonw-2 in: Toolset Professional Support |
2 | 3 | 4 years ago | ||
Custom block classes not working
Started by: jasonw-2 in: Toolset Professional Support |
2 | 8 | 4 years ago | ||
Return # of images rather than posts (repeatable)
Started by: jasonw-2 in: Toolset Professional Support |
2 | 4 | 4 years, 1 month ago | ||
update broke homepage
Started by: jasonw-2
in: Toolset Professional Support
Problem: The issue here is that the user's homepage is not displaying correctly after activating our Views plugin. Solution: If this occurs with your I would recommend going to the edit page and checking to ensure that the page isn't assigned to a content template that is empty. |
2 | 5 | 5 years, 3 months ago | ||
Ajax upload in Cred
1
2
3
Started by: jasonw-2 in: Toolset Professional Support |
3 | 33 | 5 years, 4 months ago | ||
Displaying a list of current CPTS to Edit or Delete (Issue)
Started by: jasonw-2 in: Toolset Professional Support |
2 | 3 | 5 years, 11 months ago | ||
Edit form not displaying
Started by: jasonw-2 in: Toolset Professional Support |
2 | 6 | 5 years, 11 months ago | ||
Conditional Logic Issues
Started by: jasonw-2
in: Toolset Professional Support
Problem: I have a View that shows a CPT. The CPT has a custom field date that stores an event end date. I would like the View to show the post with a date custom field value that is coming up next. If no matching post is found, I would like to display some other default content. Solution: Add a custom date field Query Filter and configure it to show posts with upcoming end dates greater than or equal to TODAY. Add sorting based on this custom field value, ascending, so the next upcoming end date is first. Then set a limit of 1 post, so only the first event will be shown. In the Loop Editor, place your event content in the wpv-loop tags. Place your default content in the "No items found" area. Relevant Documentation: |
2 | 8 | 5 years, 11 months ago | ||
Trying to display the current month
Started by: jasonw-2
in: Toolset Professional Support
Problem: I would like to display the current month inside a View. Solution: There's no built-in way to display the current date. Add this code to your child theme's functions.php file, or create a new snippet in Toolset > Settings > Custom Code: add_shortcode( 'ts_format_date_intl', 'ts_format_date_intl_func'); function ts_format_date_intl_func( $atts, $content ) { $a = shortcode_atts( array( 'format' => '%c', 'timestamp' => time() ), $atts ); return strftime( $a['format'], $a['timestamp'] ); } Then you can display the current month by adding this shortcode: [ts_format_date_intl format="%B"] Relevant Documentation: |
2 | 3 | 6 years ago |