chrisC-25
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 |
---|---|---|---|---|---|
Galleries in view are not centering on mobile
Started by: chrisC-25
in: 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 | 5 years, 4 months ago | ||
Repeatable Field Group is not working as a loop view with modal
Started by: chrisC-25
in: 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 | 5 years, 4 months ago | ||
Trying to add a lightbox effect to a RFG view
Started by: chrisC-25
in: 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 | 5 years, 5 months ago | ||
Trying to use conditional output with repeatable field groups
Started by: chrisC-25
in: 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 | 5 years, 5 months ago | ||
Repeatable Group is not working as a loop view.
Started by: chrisC-25
in: 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 | 5 years, 5 months ago | ||
Query not showing every parent related to post
Started by: chrisC-25
in: 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 | 5 years, 6 months ago | ||
Trying to add post relationship into Yoast SEO title
Started by: chrisC-25 in: Toolset Professional Support |
2 | 2 | 5 years, 8 months ago | ||
Link to Parent Relationship in the grid
1
2
Started by: chrisC-25
in: 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 | 6 years ago | ||
Center Views Grid when only 2 of 4 columns are present
Started by: chrisC-25 in: Toolset Professional Support |
2 | 3 | 6 years, 1 month ago | ||
Searches with apostrophe return no results using Content Search in Query Filter
Started by: chrisC-25
in: 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 | 6 years, 1 month ago | ||
Trying to use search string filter in views
Started by: chrisC-25
in: 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 | 6 years, 1 month ago | ||
Conditional Output based on View
Started by: chrisC-25 in: Toolset Professional Support |
2 | 4 | 6 years, 1 month ago | ||
How to center grid
Started by: chrisC-25 in: Toolset Professional Support |
2 | 5 | 6 years, 1 month ago | ||
Display Button inline next to headline
Started by: chrisC-25 in: Toolset Professional Support |
1 | 3 | 6 years, 2 months ago | ||
Split: How to have equal height columns in a Layouts row
Started by: chrisC-25
in: Toolset Professional Support
Problem: Solution: The Layouts grid is based on the Bootstrap 3 grid and doesn't use flexbox, so you just need to be careful to use a media query to add the style rule or it will break the collapsing of the grid on smaller screens. So, you'll need to edit your Layout and add a class name to the row where you want the child columns to be of equal height, e.g. a class name of "equal-height". Then add the following custom CSS: @media ( min-width: 1200px ){ .equal-height { display: flex; } } Your media query may need to be different depending on your Layout. |
2 | 3 | 6 years, 2 months ago |