• Resolved ImageAntony Booker

    (@antonynz)


    Thanks for this plugin.

    Just a heads up in version 3.6.7 the following code was added to load a CSS file (dist/plugins.css) on the plugins.php admin page.

    code-snippets/php/class-admin.php#80

    public function enqueue_admin_assets( ?string $hook_name ) {
    if ( 'plugins.php' === $hook_name ) {
    wp_enqueue_style(
    'code-snippets-plugins-css',
    plugins_url( 'dist/plugins.css', PLUGIN_FILE ),
    [],
    PLUGIN_VERSION
    );
    }
    }

    However the dist/plugins.css stylesheet file does not exist in the plugin’s files.

Viewing 1 replies (of 1 total)
  • Plugin Author ImageShea Bunge

    (@bungeshea)

    Thank you for reporting! This file only exists in the Pro version of the plugin, but it looks like this enqueuing code snuck into the core version as well.

    It should be fixed in version 3.6.8.

Viewing 1 replies (of 1 total)

The topic ‘404 CSS file in 3.6.7’ is closed to new replies.