Howdy baraklevy,
I moved your code over to pastebin, set it to unlisted and expire in two weeks. It was too long for our forums here and was breaking the styling. But thank you for posting it, it helped reveal the problem.
First of all great customization. In your query you have this line for everything you want to appear in the slider:
query_posts(array(‘post_type’ => ‘tribe_events’,
‘posts_per_page’ => -1,
‘meta_query’ => array(array(‘key’ => ‘featured_event’,
‘value’ => ‘1’,
‘compare’ => ‘==’
)
)
)
);
That makes sense. But then you have this line later for everything you want to appear in the list:
$links_params = array();
$params = array(‘post_type’ => ‘tribe_events’,
‘paged’=> $page_custom,
‘eventDisplay’ => ‘upcoming’,
‘posts_per_page’ => $posts_per_page,
‘meta_query’ => array(array(‘key’ => ‘featured_event’,
‘value’ => ‘0’,
‘compare’ => ‘==’
)
)
);
Notice that it specifically precludes anytrhing where featured_event == 1. Thus it hides whatever appears in the slider. You’d need to modify this, maybe by just remove that part of the query. Make sense? Is there anything else I can help with? Cheers!
– Brook