BD
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 |
---|---|---|---|---|---|
Add the active taxonomy slug to the menu when viewing a related custom post type
Started by: BD in: Toolset Professional Support |
2 | 7 | 1 year, 6 months ago | ||
[wpv-taxonomy-description] not rendering html from WYSIWYG editor
Started by: BD in: Toolset Professional Support |
2 | 3 | 2 years, 3 months ago | ||
Click on a calendar date to view events on that day
Started by: BD
in: Toolset Professional Support
Problem: How to make a link to the single post in the Calendar View in a classic View. Solution: I added the [wpv-post-url] shortcode to show the post URL. Then I wrapped it in a div with a class: <div class="calendar">[types field='important-date' style='calendar'][/types]<div class="the-post-url" style="display: none;">[wpv-post-url]</div></div> Then I added the JS code below to JS Editor to move that URL to the proper A tag that you made it bold: (function($) { $('div.calendar').each(function() { var theURL = $(this).find('.the-post-url').text(); $(this).find('table a').attr('href', theURL); }); })(jQuery); |
2 | 7 | 2 years, 8 months ago | ||
Output just the ALT tag for a repeating image field in Views when URL=’true’
Started by: BD
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution in this case with the following reply: Relevant Documentation: |
2 | 7 | 2 years, 9 months ago | ||
Custom Ordering using Views for Many to Many Relationships
Started by: BD
in: Toolset Professional Support
Problem: I have a custom post type 'content-panels' that has a many-to-many relationship with Pages. I would like the order of the Content Panels to be different on a page-by-page basis, so I have created a numeric custom field ('position-of-content-panel-on-page') that is associated with the intermediary post type: 'content-panel-page'. I have successfully set the order number for the Content Panels (different for each page). The problem I have is that I need Views to output the Content Panels in the order dictated by the same intermediate custom field. Solution: You need to setup a post view: - Query posts of intermediary post type 'content-panel-page' - Order the results by custom field 'position-of-content-panel-on-page' - Filter by post type relationship between 'content-panels' and 'Pages'. - In view's loop, display related "Content Panels" post information Relevant Documentation: https://toolset.com/course-lesson/displaying-related-posts/#displaying-one-related-item-parent |
2 | 7 | 2 years, 9 months ago | ||
Where to use this Field Group – 'Default' page template never stays ticked
Started by: BD in: Toolset Professional Support |
2 | 4 | 3 years ago | ||
Hide a LOAD MORE button after Ajax has loaded last results
Started by: BD
in: Toolset Professional Support
Problem: Solution: span.wpv-filter-next-link.page-link { display: none; } |
2 | 5 | 4 years, 6 months ago | ||
Views Parametric Filter Sorting / Selections no Longer Working with Views 3.0.1
1
2
Started by: BD in: Toolset Professional Support |
3 | 18 | 4 years, 10 months ago | ||
Using total count of unfiltered posts as conditional: if [wpv-found-count] < ALL
Started by: BD in: Toolset Professional Support |
2 | 7 | 5 years, 7 months ago | ||
"Include in search" for custom fields doesn't stay checked in a repeatable group
Started by: BD in: Toolset Professional Support |
2 | 12 | 5 years, 9 months ago | ||
Heads Up: Types download is named 'Downloads' on your website
Started by: BD in: Toolset Professional Support |
2 | 3 | 6 years, 5 months ago | ||
If a custom field is empty for ALL items in a view, hide whole table column
Started by: BD in: Toolset Professional Support |
1 | 2 | 6 years, 6 months ago | ||
Hide Parent View if Child View is Empty
Started by: BD
in: Toolset Professional Support
Problem: Solution: Then add JS to the nested Views in the wpv-items-found section but outside of the wpv-loop tags which sets the display property of the parent to 'block' so that the content becomes visible. The parent View can generate a wrapper for each iteration with a unique class name, like so: <div class="results-container-[wpv-post-id]"> The nested Views can then target that unique class name like so: jQuery('.results-container-[wpv-post-id id="$parent-slug"]').css('display', 'block'); |
2 | 9 | 6 years, 8 months ago | ||
Malware appears when Types is activated
Started by: BD
in: Toolset Professional Support
Problem: When Types is active, I see several malware scripts appear in the network activity on my site, as well as in webpagetest.org tests. The following domains appear in the asset list: Solution: In this case, it appears a Trip Advisor widget was responsible for these requests. The widget only appeared when Types was active, so it seemed as though Types was responsible for the malware. |
2 | 5 | 6 years, 8 months ago | ||
How to display a hierarchical taxonomy’s parent title (not as an integer)?
Started by: BD
in: Types Community Support
Problem: I would like to display the parent taxonomy term name on the child term's archive page. Solution: There's not a way to do this with shortcodes alone, so you'll need to use Views or you can write your own custom code. The Views approach is described below. [wpv-view name="your-view-slug" ids="[wpv-taxonomy-archive info='parent']"] So you're accessing the parent term ID with the wpv-taxonomy-archive tag, and using that value to define the filter for another View. This is called passing arguments into a View. Relevant Documentation: https://toolset.com/documentation/user-guides/passing-arguments-to-views/ |
2 | 3 | 6 years, 11 months ago |