jasonw-2
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
Map search drop downs
Commencé par : jasonw-2 in: Toolset Professional Support |
2 | 6 | Il y a 1 année | ||
Workaround for Templates (Single Post)
Commencé par : jasonw-2 in: Toolset Professional Support |
2 | 10 | Il y a 1 année | ||
Ajax pagination
Commencé par : jasonw-2 in: Toolset Professional Support |
2 | 3 | Il y a 1 année et 1 mois | ||
Getting Submit Error on Edit Post
Commencé par : jasonw-2 in: Toolset Professional Support |
2 | 7 | Il y a 1 année et 1 mois | ||
Flexslider working when logged in but not when logged out
Commencé par : jasonw-2 in: Toolset Professional Support |
1 | 1 | Il y a 1 année et 2 mois | ||
In a view template: Listing main categories with children
Commencé par : jasonw-2 in: Toolset Professional Support |
2 | 9 | Il y a 1 année et 8 mois | ||
Edit Gallery
Commencé par : jasonw-2 in: Toolset Professional Support |
2 | 3 | Il y a 4 années et 3 mois | ||
Custom block classes not working
Commencé par : jasonw-2 in: Toolset Professional Support |
2 | 8 | Il y a 4 années et 3 mois | ||
Return # of images rather than posts (repeatable)
Commencé par : jasonw-2 in: Toolset Professional Support |
2 | 4 | Il y a 4 années et 4 mois | ||
update broke homepage
Commencé par : 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 | Il y a 5 années et 6 mois | ||
Ajax upload in Cred
1
2
3
Commencé par : jasonw-2 in: Toolset Professional Support |
3 | 33 | Il y a 5 années et 7 mois | ||
Displaying a list of current CPTS to Edit or Delete (Issue)
Commencé par : jasonw-2 in: Toolset Professional Support |
2 | 3 | Il y a 6 années et 1 mois | ||
Edit form not displaying
Commencé par : jasonw-2 in: Toolset Professional Support |
2 | 6 | Il y a 6 années et 1 mois | ||
Conditional Logic Issues
Commencé par : 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 | Il y a 6 années et 1 mois | ||
Trying to display the current month
Commencé par : 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 | Il y a 6 années et 2 mois |