Tell us what you are trying to do?
I have  a taxonomy view that embeds a Woocommerce products view filtered by the parent taxonomy term.
This taxonomy is a product attribute and terms are Unix timestamps.
I would like to show only the terms greater than today.
Is there any documentation that you are following?
Is there a similar example that we can see?
What is the link to your site?
hidden link 
			
	 
	
 
		
			
	
	
			
			Minesh Supporter 
				
								
					
						Languages:  
															English (English									) 
								
				 
								
					
						Timezone:  
							Asia/Kolkata (GMT+05:30) 
				 
				
	 
	
			
			Hello. Thank you for contacting the Toolset support.
I've to review you structure and where on what page you have added the  view and what view you want to filter?
Can you please  share all those require information that should help me to understand your issue and once I review your setup I will be able to guide you in  the  right direction.
*** Please make a FULL BACKUP of your database and website.***
 I have set the next reply to private which means only you and I have access to it.
			
	 
	
 
		
			
	
	
	
			
			This should be done with custom code and wpv_filter_taxonomy_query filter but I don't know how.
			
	 
	
 
		
			
	
	
	
			
			Hi,
So any news about my request ?
Cheers.
			
	 
	
 
		
			
	
	
	
			
			Hi,
Website is broken, I get :
Array
)
Plese try to avoid breaking things, I am actively working on this site.
			
	 
	
 
		
			
	
	
			
			Minesh Supporter 
				
								
					
						Languages:  
															English (English									) 
								
				 
								
					
						Timezone:  
							Asia/Kolkata (GMT+05:30) 
				 
				
	 
	
			
			Actually I was testing the shortcode I  build. 
To filter the taxonomy view, you will require to use the view's filter hook: wpv_filter_taxonomy_queryhttps://toolset.com/documentation/programmer-reference/views-filters/#wpv_filter_taxonomy_query 
To get only the term IDs of  future date, you will require to write some custom code for example:
$all_terms = get_terms( 'pa_jours-affichage', array(
    'hide_empty' => false,) );
$include = array();
foreach($all_terms  as $k=>$v):
       if($v->name > time()){
          $include[$v->term_id] = $v->term_id;
       }
endforeach;
 
 
So you should hook in the found term IDs in $include variable those  are the terms greater than the  current time.
			
	 
	
 
		
			
	
	
	
			
			Hi,
Thanks a lot for your precious help.
Finally works wi the following code :
add_filter( 'wpv_filter_taxonomy_query', 'exclude_specific_terms_func', 99, 3 );
function exclude_specific_terms_func( $tax_query_settings, $view_settings, $view_id ) {
    if ( 49713 == $view_id || 49756 == $view_id ) {
        $all_terms = get_terms( 'pa_jours-affichage', array('hide_empty' => false,) );
		$exclude = array();
		foreach($all_terms  as $k=>$v):
       		if( intval($v->name) < $tomorrow ){
		endforeach;
    }
}