riccardoU
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 |
---|---|---|---|---|---|
Super Slow Performance and Popup..
Started by: riccardoU in: Toolset Professional Support |
2 | 2 | 3 years, 6 months ago | ||
Excluding a specific category from posts view with front end filter…
1
2
Started by: riccardoU
in: Toolset Professional Support
Problem: Solution: add_filter( 'wpv_filter_query', 'exclude_terms_func', 10, 3 ); function exclude_terms_func($query, $setting, $views_ID) { if($views_ID == 3346) // your view id { $query['tax_query'][] = array( 'taxonomy' => 'book-author', // taxonomy name 'field' => 'slug', 'terms' => array( 'adam', 'adam2016' ), // term slug for exclude 'operator' => 'NOT IN' ); $query['tax_query']['relation'] = 'AND'; } return $query; } Relevant Documentation: |
|
2 | 17 | 3 years, 7 months ago | |
Pagination (Links) display issues with Mobile
Started by: riccardoU
in: Toolset Professional Support
Problem: Setup pagination links block. Solution: You can find and select the Pagination block, setup it as what you want. Relevant Documentation: |
|
2 | 4 | 3 years, 8 months ago | |
The Pagination does not display correctly?
Started by: riccardoU in: Toolset Professional Support |
|
3 | 7 | 4 years ago | |
Creating a VIEW for standard WordPress Post Types – filter by Taxanomy …
Started by: riccardoU
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution in this case with the following reply: Relevant Documentation: |
|
2 | 6 | 4 years, 1 month ago | |
Help displaying individual galleries (non custom fields) for a custom post type.
Started by: riccardoU
in: Toolset Professional Support
Problem: I would like to add some non-Toolset blocks to a post, but the changes I make in the post editor are not reflected on the front-end of the site. Solution: Check to see if a Content Template is assigned to the post. If so, you may need to make changes in the Content Template instead of the post editor to see those updates on the front-end of the site. The Content Template design overrides the post content in the post editor. Relevant Documentation: |
|
2 | 3 | 4 years, 1 month ago |