Title: Block Editor Assets
Last modified: January 28, 2019

---

# Block Editor Assets

 *  [Jeff Sterup](https://wordpress.org/support/users/foomagoo/)
 * (@foomagoo)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/block-editor-assets/)
 * 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](https://wordpress.org/support/users/foomagoo/)
 * (@foomagoo)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/block-editor-assets/#post-11308858)
 * 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.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/conica/1.4.01/screenshot.png)
 * Conica
 * [Support Threads](https://wordpress.org/support/theme/conica/)
 * [Active Topics](https://wordpress.org/support/theme/conica/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/conica/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/conica/reviews/)

 * 1 reply
 * 1 participant
 * Last reply from: [Jeff Sterup](https://wordpress.org/support/users/foomagoo/)
 * Last activity: [7 years, 5 months ago](https://wordpress.org/support/topic/block-editor-assets/#post-11308858)
 * Status: not resolved