We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Because it's prepending the theme directory to the request URL, it doesn't allow child-theme to use this helper.
The text was updated successfully, but these errors were encountered:
I hit this issue today as well. 👍
Sorry, something went wrong.
For anyone wanting a quick fix for this in the mean time:
add_action( 'admin_enqueue_scripts', function() { $file = get_template_directory_uri() . "/child/overrides.css"; wp_enqueue_style('app-theme-customisations', str_replace('base-theme','child-theme',$file)); } );
where 'base-theme' and 'child-theme' are the difference in url path to the file (as get_template_directory_uri() only returns the base theme)
No branches or pull requests
Because it's prepending the theme directory to the request URL, it doesn't allow child-theme to use this helper.
The text was updated successfully, but these errors were encountered: