Hi Holly!
Thanks for reaching out to us! I’m sorry you are having that issue đ
If you did find out it’s a theme conflict, I suggest you contact the theme authors to see if they can help you solve the issue.
Just to set expectations, let me tell you that our â<u>Terms of Service</u>â doesnât allow us to help with custom coding. But we do like helping out and at least point users into the right direction.
So here is a code snippet you could try adding to your theme’s functions.php file to remove the ajax pagination script from the list view >
add_action( 'wp_enqueue_scripts', 'dequeue_tribe_events_ajax_list' );
function dequeue_tribe_events_ajax_list () {
wp_dequeue_script('tribe-events-list');
}
I hope that works for you. Let me know if any other questions.
Best!
Victor