chrisC-25
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 |
---|---|---|---|---|---|
Since updating layouts my custom field is not returning expected results.
Iniciado por: chrisC-25 en: Chat Support |
|
1 | 2 |
hace 5 años, 6 meses
|
|
Rows with gallery view get progressively wider as each new row is added
Iniciado por: chrisC-25
en: Toolset Professional Support
Problem: I'm using a Bootstrap-grid View to display some results, but each row in the grid gets wider and wider. Solution: In this case, a div is unclosed in the Loop Output editor. Closing the div will fix the row layout problem. |
|
2 | 5 | hace 5 años, 7 meses | |
When I add a new row with a gallery view, the gallery images get wider on each a
Iniciado por: chrisC-25 en: Chat Support |
|
1 | 1 | hace 5 años, 7 meses | |
Galleries in view are not centering on mobile
Iniciado por: chrisC-25
en: Toolset Professional Support
Problem: The galleries on my website page when viewed on mobile will not center. Solution: It should be a custom CSS codes problem, see details here: https://toolset.com/forums/topic/galleries-in-view-are-not-centering-on-mobile/#post-1283663 Relevant Documentation: |
|
2 | 3 | hace 5 años, 7 meses | |
Repeatable Field Group is not working as a loop view with modal
Iniciado por: chrisC-25
en: Toolset Professional Support
Problem: I am trying to use a modal interface to display a gallery of images from a repeatable field group, but it doesn't seem to be working as expected. Solution: Be sure the HTML "id" attribute is unique for each loop in the View. You can usually add the post ID using the wpv-post-id shortcode to achieve this (see below). Then you must also update the target attributes that correspond to the new unique ID. Unique ID in the modal: <div class="modal fade" id="articlemodal-[wpv-post-id]" tabindex="-1" role="dialog" aria-labelledby="myModalLabel-[wpv-post-id]"> ... The updated corresponding modal trigger: <a data-toggle="modal" data-target="#articlemodal-[wpv-post-id]" rel="noopener noreferrer"> ... |
|
2 | 3 | hace 5 años, 7 meses | |
Trying to add a lightbox effect to a RFG view
Iniciado por: chrisC-25
en: Toolset Professional Support
Problem: I would like to add a lightbox effect to my View but it's not working as expected. Solution: Enqueue the script file in your theme, then move the script that initializes the lightbox into the View's Loop Output JS editor. Relevant Documentation: |
|
2 | 7 | hace 5 años, 8 meses | |
Trying to use conditional output with repeatable field groups
Iniciado por: chrisC-25
en: Toolset Professional Support
Problem: I would like to test if any RFGs exist on a post, using conditional HTML. Solution: There's not a way to test that with conditional HTML, but you can use the View's wpv-items-found and wpv-no-items-found sections to display information only if there are RFG results found in the View. |
|
2 | 9 | hace 5 años, 8 meses | |
Repeatable Group is not working as a loop view.
Iniciado por: chrisC-25
en: Toolset Professional Support
Problem: I set up a repeatable group and built the view, it is only showing the first item in the group and not the next 2 in the loop. Solution: In this case, it needs only one html "UL" tag, for example: https://toolset.com/forums/topic/repeatable-group-is-not-working-as-a-loop-view/#post-1272171 Relevant Documentation: |
|
2 | 3 | hace 5 años, 8 meses | |
Query not showing every parent related to post
Iniciado por: chrisC-25
en: Toolset Professional Support
Problem: I have a View set up to display all the posts related to the current post in a many-to-many relationship, but some related posts are not displayed. Solution: Check the post status on those missing posts and be sure they are published. |
|
2 | 9 | hace 5 años, 9 meses | |
Suddenly the Plugins page is blank and it is related to Types
Iniciado por: chrisC-25 en: Chat Support |
|
1 | 2 | hace 5 años, 10 meses | |
Trying to add post relationship into Yoast SEO title
Iniciado por: chrisC-25 en: Toolset Professional Support |
|
2 | 2 | hace 5 años, 11 meses | |
Link to Parent Relationship in the grid
1
2
Iniciado por: chrisC-25
en: Toolset Professional Support
Problem: I would like to display the title of a parent post in The Grid. Solution: The standard post relationship shortcodes do not work well in The Grid. Try this custom shortcode instead: add_shortcode( 'ts-get-parent-artist', 'ts_get_parent_artist_func'); function ts_get_parent_artist_func( $atts, $content ) { $a = shortcode_atts( array( 'child' => '0', 'type' => 'artist', ), $atts ); $parent = toolset_get_related_post( $a['child'], 'artist-release' ); return get_the_title($parent); } Then add this to The Grid: [ts-get-parent-artist child="#post_ID#"] Relevant Documentation: |
|
2 | 18 | hace 6 años, 3 meses | |
Center Views Grid when only 2 of 4 columns are present
Iniciado por: chrisC-25 en: Toolset Professional Support |
|
2 | 3 | hace 6 años, 4 meses | |
Searches with apostrophe return no results using Content Search in Query Filter
Iniciado por: chrisC-25
en: Toolset Professional Support
Problem: It doesn't work where the current post title includes an apostrophe. Solution: In the meantime a workaround is described below: https://toolset.com/forums/topic/searches-with-apostrophe-return-no-results-using-content-search-in-query-filter-2/#post-1128106 |
|
2 | 5 | hace 6 años, 4 meses | |
Trying to use search string filter in views
Iniciado por: chrisC-25
en: Toolset Professional Support
Problem: Solution: Note that you can only pass shortcode attributes when inserting the View by shortcode, you cannot pass attributes when using a Views cell in a Layout, for example. In that case you would need to replace the Views cell with a Visual Editor cell and insert the View via shortcode. Relevant Documentation: |
|
2 | 4 | hace 6 años, 4 meses |