Helmi
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 |
---|---|---|---|---|---|
Password for editing content, review process & zip code for maps
Started by: Helmi in: Toolset Professional Support |
|
2 | 2 | 4 years, 7 months ago | |
Taxonomy View inside WordPress archive
Started by: Helmi
in: Toolset Professional Support
Problem: Display a taxonomy view outside wpv-loop HTML tags of taxonomy archive page. Solution: It should be a known issue of Toolset Views plugin, The recommended workaround is to not use Content Templates to group fields in a Taxonomy View. See example here: https://toolset.com/forums/topic/taxonomy-view-inside-wordpress-archive/#post-1712141 Relevant Documentation: |
|
2 | 5 | 4 years, 8 months ago | |
Content doesn't render in Oxygen templates with views active
Started by: Helmi in: Toolset Professional Support |
|
2 | 3 | 5 years, 5 months ago | |
Conditional to check if parent field is empty doesn't work as expected
Started by: Helmi in: Toolset Professional Support |
|
2 | 6 | 6 years ago | |
Problems with third party plugin rendering (Glossary Plugin)
Started by: Helmi
in: Toolset Professional Support
Problem: The wpv-post-title tag is showing the title of the page where the View is shown instead of the title of the post in the loop. The View includes a post ID filter using the shortcode attribute "ids". Solution: Try adding the ID attribute to specify the title target. [wpv-post-title id="[wpv-attribute name='ids']"] Relevant Documentation: |
|
2 | 5 | 6 years, 1 month ago | |
Show category title only when there are items in view set by parent taxonomy
Started by: Helmi
in: Toolset Professional Support
Problem: I have a nested View structure showing a loop of child terms nested inside a loop of parent terms. I would like to display the parent term name only if that parent term has existing child terms. The wpv-post-taxonomy shortcode doesn't seem to be working correctly. Solution: [wpv-taxonomy-title] However, this h3 is outside the wpv-loop tags where the wpv-taxonomy-title shortcode will not work: <h3>Kategorie: [wpv-taxonomy-title]</h3> <!-- wpv-loop-start --> <wpv-loop> ...your loop code... Instead, you can use a shortcode attribute to pass the parent taxonomy term name into the child taxonomy term View: <wpv-loop> [wpv-view name="your-child-term-view" parentterm="[wpv-taxonomy-title]"] </wpv-loop> Inside the child term View you can now access that shortcode attribute with the wpv-attribute shortcode: <h3>Kategorie: [wpv-attribute name="parentterm"]</h3> This is called passing arguments to Views. Relevant Documentation: |
|
2 | 3 | 6 years, 2 months ago |