Hi, I changed the plugin slug to "domilocus". You changed the plugin display name to "Domilocus". Continuing with the plugin review for "consulinfolm". Let’s dive in! Your plugin is not yet ready to be approved, you are receiving this email because the volunteers have manually checked it and have found some issues in the code / functionality of your plugin. Please check this email thoroughly, address any issues listed, test your changes, and upload a corrected version of your code if all is well. List of issues found ## Not permitted files A plugin typically consists of files related to the plugin functionality (php, js, css, txt, md) and maybe some multimedia files (png, svg, jpg) and / or data files (json, xml). We have detected files that are not among of the files normally found in a plugin, are they necessary? If not, then those won't be allowed. Optionally, you can use the wp dist-archive command from WP-CLI in conjunction with a .distignore file. This prevents unwanted files from being included in the distribution archive. Example(s) from your plugin: domilocus/languages/domilocus-fr_FRmo domilocus/languages/domilocus-es_ESmo domilocus/languages/domilocus-it_ITmo domilocus/languages/domilocus-en_GBmo domilocus/languages/domilocus-de_DEmo ## Use wp_enqueue commands Your plugin is not correctly including JS and/or CSS. You should be using the built in functions for this: When including JavaScript code you can use: • wp_register_script() and wp_enqueue_script() to add JavaScript code from a file. • wp_add_inline_script() to add inline JavaScript code to previous declared scripts. When including CSS you can use: • wp_register_style() and wp_enqueue_style() to add CSS from a file. • wp_add_inline_style() to add inline CSS to previously declared CSS. Note that as of WordPress 6.3, you can easily pass attributes like defer or async: https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/ Also, as of WordPress 5.7, you can pass other attributes by using this functions and filters: https://make.wordpress.org/core/2021/02/23/introducing-script-attributes-related-functions-in-wordpress-5-7/ If you're trying to enqueue on the admin pages you'll want to use the admin enqueues. • https://developer.wordpress.org/reference/hooks/admin_enqueue_scripts/ • https://developer.wordpress.org/reference/hooks/admin_print_scripts/ • https://developer.wordpress.org/reference/hooks/admin_print_styles/ Example(s) from your plugin: includes/admin/booking-form.php:398