• There is an issue with Conica printing a style tag to the screen before html output has started in the admin. When you edit a post the theme prints a style tag from conica/includes/inc/extras.php. It should enqueue a style but instead it starts printing to the screen. This is done before html output has started and causes errors with cookies being set for the admin. If you look at the page source you can see the style tag is printed too early.

Viewing 1 replies (of 1 total)
  • Thread Starter Jeff Sterup

    (@foomagoo)

    To fix this the add_action call on the last line of the file needs to be changed from this:

    add_action( 'enqueue_block_editor_assets', 'customizer_library_conica_editor_styles', 11 );

    To this:

    add_action( 'admin_head', 'customizer_library_conica_editor_styles', 11 );

    This is an easy fix for you to implement. Please add it. This is causing issues with Gutenberg as well since it is putting my browser into Quirks mode.

Viewing 1 replies (of 1 total)
  • The topic ‘Block Editor Assets’ is closed to new replies.