Well that’s a new one it’s the theme okay, now to debug. Thanks for the help.
@elliot Not that I’m aware of i’ve tried disabling every plugin aside from ACF and still nothing. also the last two errors thrown about no method contains is when i attempt to drag something.
nevermind i just did it with a wp query
$query = new WP_Query(array(
'post_type' => 'promocontainers',
'meta_query' => array(
'key' => 'videos',
'value' => get_the_ID(),
'compare' => 'LIKE'
)
));
After this update the issue is still there tabs that should be hidden due to conditional logic are still showing initially and once you make another condition true it shows all the other ones.