Hi @scorpiock,
Thanks for the response.
wpda_public.css only contains styling for the project icon on the admin toolbar. See here: https://share.zight.com/NQuBG7Rj
This is for whenever you choose to have a shortcut of your project from the admin toolbar.
If you still wish to stop these scripts from getting enqueued, you can try to dequeue them by adding a function to your theme’s function.php file.
To dequeue the style:
add_action( 'wp_enqueue_scripts', 'mywptheme_child_deregister_styles', 11 );
function mywptheme_child_deregister_styles() {
wp_dequeue_style( 'wpda_wpdp_public' );
}
To dequeue the script:
function wpdocs_dequeue_script() {
wp_dequeue_script( 'wpda_rest_api' );
}
add_action( 'wp_print_scripts', 'wpdocs_dequeue_script', 100 );
Please try the above and let us know if that works. ??