Thread Starter
Bflin
(@bflin)
Sorry if I am not clear enough… Can we get all the private discussions from the admin ?
Thank you anyway.
Thread Starter
Bflin
(@bflin)
I just want to know how to extract the data from the plugin, so that people with the right permissions could study other people requests and be more efficient. Can we do this simply ? Actually I’m trying to get Cartpeuj PM conversations in pm-class.php to put it in new posts. Am I wrong or this could work ?
Thread Starter
Bflin
(@bflin)
Hi, thank you for your anwser, and have good luck you too !
We find out a solution, here is a part, if that can help peoples…
if(is_category('expositions')){
$args = array(
'post_type'=>array('tribe_events','post'),
'tax_query' => array(
'relation' => 'OR',
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => 'expositions'
),
array(
'taxonomy' => 'tribe_events_cat',
'field' => 'slug',
'terms' => 'expositions'
)
));
This extract what wanted.