jasonw-2
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
Map search drop downs
Iniciado por: jasonw-2 en: Toolset Professional Support |
2 | 6 | hace 10 meses, 1 semana | ||
Workaround for Templates (Single Post)
Iniciado por: jasonw-2 en: Toolset Professional Support |
2 | 10 | hace 10 meses, 3 semanas | ||
Ajax pagination
Iniciado por: jasonw-2 en: Toolset Professional Support |
2 | 3 | hace 11 meses, 1 semana | ||
Getting Submit Error on Edit Post
Iniciado por: jasonw-2 en: Toolset Professional Support |
2 | 7 | hace 11 meses, 3 semanas | ||
Flexslider working when logged in but not when logged out
Iniciado por: jasonw-2 en: Toolset Professional Support |
1 | 1 | hace 1 año | ||
In a view template: Listing main categories with children
Iniciado por: jasonw-2 en: Toolset Professional Support |
2 | 9 | hace 1 año, 6 meses | ||
Edit Gallery
Iniciado por: jasonw-2 en: Toolset Professional Support |
2 | 3 | hace 4 años, 1 mes | ||
Custom block classes not working
Iniciado por: jasonw-2 en: Toolset Professional Support |
2 | 8 | hace 4 años, 1 mes | ||
Return # of images rather than posts (repeatable)
Iniciado por: jasonw-2 en: Toolset Professional Support |
2 | 4 | hace 4 años, 2 meses | ||
update broke homepage
Iniciado por: jasonw-2
en: 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 | hace 5 años, 4 meses | ||
Ajax upload in Cred
1
2
3
Iniciado por: jasonw-2 en: Toolset Professional Support |
3 | 33 | hace 5 años, 5 meses | ||
Displaying a list of current CPTS to Edit or Delete (Issue)
Iniciado por: jasonw-2 en: Toolset Professional Support |
2 | 3 | hace 5 años, 11 meses | ||
Edit form not displaying
Iniciado por: jasonw-2 en: Toolset Professional Support |
2 | 6 | hace 5 años, 11 meses | ||
Conditional Logic Issues
Iniciado por: jasonw-2
en: 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 | hace 5 años, 12 meses | ||
Trying to display the current month
Iniciado por: jasonw-2
en: 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 | hace 6 años |