Benoît
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 |
---|---|---|---|---|---|
What is the difference between toolset blocks and layout?
Started by: Benoît in: Toolset Professional Support |
2 | 3 | 4 years, 10 months ago | ||
login to discover-wp
Started by: Benoît in: Toolset Professional Support |
1 | 2 | 5 years, 7 months ago | ||
Google Maps API general settings : javascript API error
Started by: Benoît
in: Toolset Professional Support
Problem: The issue here was that the user was having an issue with the API key validation for Google Maps. Solution: It seems that you are using a restricted API key that is limited to a particular site. Could you try generating a key without a restricted domain and try this key. This is just to ensure that the Maps API will validate. |
2 | 5 | 5 years, 8 months ago | ||
Display taxonomy image with view
Started by: Benoît
in: Toolset Professional Support
Problem: My post displays a list of taxonomy terms, but I would like to use custom images instead of each term. Solution: Use taxonomy term fields to store an image for each term. Then use a taxonomy View to display the image associated with each term, which is associated to the current post. [types field="my-term-field-image" alt="blue bird" title="Acme logo" class="my-class1" size="thumbnail"] Relevant Documentation: |
2 | 13 | 7 years ago | ||
How to display parent category before child category? (not alphabetical order)
Started by: Benoît
in: Toolset Professional Support
Problem: I would like to display my list of terms in hierarchical order instead of alphabetical order. Solution: Add the following code to functions.php: unction list_hierarchical_terms($atts) { global $post; $taxonomy = $atts['taxonomy']; // change this to your taxonomy $separator = ''; $out = ''; $term_ids = wp_get_object_terms( $post->ID, $taxonomy, array( "fields" => "ids" ) ); usort( $term_ids, 'cmp' ); foreach($term_ids as $term_id ) { $term = get_term( $term_id, $taxonomy, OBJECT ); $out .= $separator . $term->name; $separator = $atts['separator']; } return $out; } add_shortcode('display_post_tax_terms_hierarchical', 'list_hierarchical_terms'); Then use your new custom shortcode like so: [display_post_tax_terms_hierarchical taxonomy="category" separator=" | "] |
2 | 8 | 7 years, 1 month ago | ||
View post grid – categories order and custom colors?
Started by: Benoît in: Toolset Professional Support |
2 | 2 | 7 years, 2 months ago | ||
How to filter a view in a page?
Started by: Benoît
in: Toolset Professional Support
Problem: I would like to reuse the same View on multiple pages of my site, but I would like to filter the View using different taxonomy terms on different pages. Solution: Use shortcode attributes in your View to define the correct taxonomy filters on each page. Set up your View's Query Filters to filter based on your taxonomy term shortcode arguments. [wpv-view name="initiatives-in-indicator-pages" wpvcategory="term-slug"] Relevant Documentation: https://toolset.com/documentation/user-guides/passing-arguments-to-views/ |
2 | 6 | 7 years, 3 months ago | ||
How to create a template to display custom post filtered by tags?
Started by: Benoît in: Toolset Professional Support |
2 | 6 | 7 years, 4 months ago | ||
How to load bootstrap only in a specific page
Started by: Benoît in: Toolset Professional Support |
2 | 5 | 7 years, 5 months ago | ||
Content template not displayed
Started by: Benoît in: Toolset Professional Support |
2 | 9 | 7 years, 5 months ago | ||
order by category
Started by: Benoît in: Toolset Professional Support |
2 | 2 | 7 years, 5 months ago | ||
How to display custom cat in filters in the wp-admin?
Started by: Benoît in: Toolset Professional Support |
2 | 2 | 7 years, 5 months ago |