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 | 4 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 | 4 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 | 4 years, 8 months ago |