romanB-3
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 |
---|---|---|---|---|---|
Choosing default value for parametric select filter by date
Started by: romanB-3 in: Toolset Professional Support |
2 | 15 | 5 years, 7 months ago | ||
Conflict issue with FlowFlow social stream plugin
Started by: romanB-3
in: Toolset Professional Support
Problem: Conflict issue between Toolset Views and FlowFlow plugins: https://toolset.com/forums/topic/conflict-issue-with-flowflow-social-stream-plugin/#post-1219649 Solution: It is fixed in FlowFlow plugin side. Relevant Documentation: |
2 | 5 | 5 years, 7 months ago | ||
Parametric search for Taxonomy-based Views
Started by: romanB-3
in: Toolset Professional Support
Problem: I would like to create a parametric search Taxonomy View. Solution: It's not possible in the current software.As the message says in the View editor: "Only Views listing posts can have custom search inputs." If you'd like to see this feature added to the software, I encourage you to submit your request over here: https://toolset.com/home/contact-us/suggest-a-new-feature-for-toolset/ Relevant Documentation: |
2 | 3 | 5 years, 7 months ago | ||
How to filter view by custom date field by day, days, month, year, week
Started by: romanB-3
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 9 | 5 years, 7 months ago | ||
Use views and fields shortcodes within CSS and/or JS editors
Started by: romanB-3
in: Toolset Professional Support
Problem: I wonder if it is possible to use fields shortcodes within CSS and/or JS editors ? Solution: No, in the CSS/JS editors, it does not support shortcodes or other custom shortcodes. You can move the your custom CSS/JS codes into content area, for example: Relevant Documentation: |
2 | 3 | 5 years, 7 months ago | ||
Display parent taxonomies of currently displaying children taxonomies
Started by: romanB-3 in: Toolset Professional Support |
2 | 5 | 5 years, 7 months ago | ||
map height = calc(100vh – 73px)
Started by: romanB-3 in: Toolset Professional Support |
2 | 4 | 5 years, 7 months ago | ||
Date field is displayonly
Started by: romanB-3 in: Toolset Professional Support |
1 | 2 | 5 years, 7 months ago | ||
In a view, only show terms from a specific hierarchical level
Started by: romanB-3
in: Toolset Professional Support
Problem: I have a hierarchical taxonomy with multiple levels. I would like to create a View of this taxonomy and display terms only from one specific level of hierarchy, regardless of parent term. Solution: Use a custom shortcode that produces a comma-separated list of city term IDs like 1,2,3,4. Then use this shortcode in a View of terms filtered by term ID as a shortcode attribute "terms". Here's a custom shortcode snippet: // COMMA-SEPARATED LIST OF N-LEVEL TAXONOMY TERM IDS OR SLUGS // n => Number, hierarchical level // format => String "id" (default) or "slug" // taxonomy => String "taxonomy-slug" // Ex. [n-level-term n="2" format="slug" taxonomy="book-tax"] function n_level_terms_func($atts) { $a = shortcode_atts( array( 'n' => '0', 'format'=>'id', 'taxonomy' => '' ), $atts ); $tax = $a['taxonomy']; $terms = get_terms( $tax, array( 'hide_empty' => false) ); $returns = array(); foreach( $terms as $term ) { if( isset($term->term_id) ){ $ancestors = get_ancestors( $term->term_id, $tax ); $count = count( $ancestors ) + 1; if( $count == $a['n'] ) { $returns[] = $a['format'] == 'id' ? $term->term_id : $term->slug; } } } return implode( ',', $returns); } add_shortcode("n-level-terms", "n_level_terms_func"); Here's how you would add it to the View's shortcode attribute: [wpv-view name="Filtered Term View" terms="[n-level-terms n='4' format='id' taxonomy='places']"] Relevant Documentation: |
2 | 3 | 5 years, 7 months ago | ||
Auto center and zoom map based on visitor's location
Started by: romanB-3 in: Toolset Professional Support |
2 | 3 | 5 years, 8 months ago | ||
Maps don’t show marker anymore
Started by: romanB-3
in: Toolset Professional Support
Problem: On a brand new project I followed the tutorial and setup a map with markers with no effect. The map shows, the API is ok, but the markers don't show. Solution: The client has fixed it by adding the second Google Map API key. Relevant Documentation: |
2 | 3 | 5 years, 10 months ago | ||
Split: Map don't load if one of the posts is not well filed
Started by: romanB-3 in: Toolset Professional Support |
3 | 13 | 6 years ago | ||
ToTop when js-wpv-addon-maps-focus-map
Started by: romanB-3 in: Toolset Professional Support |
2 | 7 | 6 years ago | ||
Read more in exceprt shortcode doesn’t link to the page
Started by: romanB-3
in: Toolset Professional Support
Problem: The "read more" text in the wpv-post-excerpt shortcode does not link to the post. Solution: Add a link to the "more" attribute manually: [wpv-post-excerpt length='55' count='word' more='<a href="[wpv-post-url]">Lire la suite...</a>'] Relevant Documentation: |
2 | 3 | 6 years ago | ||
Show the backend edit pages for the taxonomy
Started by: romanB-3 in: Toolset Professional Support |
2 | 2 | 6 years ago |