riccardoU
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
| Status | Debate | Supporter | Voces | Mensajes | Caducidad |
|---|---|---|---|---|---|
|
Super Slow Performance and Popup..
Iniciado por: riccardoU en: Toolset Professional Support |
2 | 2 | 4 years, 8 months ago | ||
|
Excluding a specific category from posts view with front end filter…
1
2
Iniciado por: riccardoU
en: 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, 9 months ago | |
|
Pagination (Links) display issues with Mobile
Iniciado por: riccardoU
en: 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, 10 months ago |