How enqueue CSS out of theme folder?

You can use content_url() to get a URL to the wp-content folder: add_action( ‘init’, function() { wp_enqueue_style( ‘my-tag’, content_url( ‘cssfile.css’ ) ); }); See https://developer.wordpress.org/reference/functions/content_url/

How do I remove Google Fonts from a parent theme?

You may also want to try to deregister the style within your function since it has been register in the parent theme function. Try: function remove_google_fonts_stylesheet() { wp_dequeue_style( ‘pixgraphy_google_fonts’ ); wp_deregister_style(‘pixgraphy_google_fonts’); } add_action( ‘wp_enqueue_scripts’, ‘remove_google_fonts_stylesheet’, 100 );

How to fix enqueue_styles error for a twenty-seventeen childtheme

I think you can try with this code below. function childtheme_enqueue_styles() { wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’, array(), wp_get_theme()->parent()->get(‘Version’) ); wp_enqueue_style( ‘child-style’, get_stylesheet_uri(), array( ‘parent-style’ ), wp_get_theme()->get(‘Version’) // Note you must provide a version into the child theme ); } add_action( ‘wp_enqueue_scripts’, ‘childtheme_enqueue_styles’ );