Hi,
I have had a similar issue on a FSE site. See info here: https://wordpress.org/support/topic/core-block-stylesheets-not-loading/
Deleting the _transient_wp_core_block_css_files record from wp_options table resolved the error.
Hi Ed,
I’m posting here as you requested I should once I logged a ticket in the helpdesk (under a different email address)
You can, however, reach out in the WordPress Community forums where free support is offered.
Take Care,
Ed ✌️
However, I was able to resolve the problem by disabling the AJAX pagination of the events. It looks like there was a problem when these events were loading and causing them to load in the incorrect order.
add_action('wp_print_scripts', 'events_calendar_remove_scripts' , 10);
function events_calendar_remove_scripts() {
wp_dequeue_script( 'tribe-events-calendar');
wp_dequeue_script( 'tribe-events-list');
wp_dequeue_script( 'tribe-events-ajax-day');
}
-
This reply was modified 7 years, 5 months ago by mathiaseverson. Reason: Markup formatting