Home › Forums › Jevelin Theme › ie.css is missing for child theme
Home › Forums › Jevelin Theme › ie.css is missing for child theme
Hi there,
I upgraded Jevelin to the latest version (currently 2.6.4) but when I look into the debugger it seems that ie.css can’t be loaded (see screenshot).
According tot the source, the CSS is loaded from https://adorbit.nl/wp-content/themes/jevelin-child/css/ie.css wich gives a 404. If I remove -child from the URL it loads correctly:
https://adorbit.nl/wp-content/themes/jevelin/css/ie.css
So maybe this is a bug in the child theme?
Thanks in advance!
Kind regards,
Rob / The Netherlands
Hi Rob,
Sorry to hear of the problem you are having.
I could confirm the issue on my test site therefore notified the theme developer about this so that it will be fixed.
The issue will be fixed ASAP.
In the meanwhile you can try resolving the issue by adding the below shared code in the functions.php file of your child theme.
function jevelin_custom_child_enqueue() { wp_dequeue_style('jevelin-ie'); wp_enqueue_style( 'jevelin-ie-custom', get_template_directory_uri() . '/css/ie.css', array( 'jevelin-styles' ) ); } add_action( 'wp_enqueue_scripts', 'jevelin_custom_child_enqueue', 100 );
Best regards,
Shufflehound team
Hi,
Thanks for the quick reply! I will wait for the update then 😉
We will notify you here when the update will be available.
The issue is fixed in the following latest version of theme so please update your theme to the latest version.
Please login to access this file
You can update it by either deleting existing theme and then install latest theme version of it or use the following plugin to update the theme.
https://wordpress.org/plugins/easy-theme-and-plugin-upgrades/
After activating the above plugin just install the downloaded theme on your site.
You won’t lose your site content after updating the theme but for safer side you can take backup of your site before updating the theme.