Hi,
I wonder why you added your own merging/minification. This is something separate plugins should do and not the theme. Now I have to deal with the theme creating its own unique css and js files that load alongside my perfectly combined css/js setup.
Is there a way to disable this new mechanism?
And there seems to be a problem with you implementation: avia-merged-styles-css loads AFTER enfold-child/style.css, thus overriding custom changes.
Thanks
Hey Gero,
Thank you for using Enfold.
Please use this filter in the functions.php file to disable the merge.
add_filter('avf_merge_assets', function() {
return 'none';
});
Best regards,
Ismael
Thank you Ismael,
that worked like a charm.
Best regards