Hello,
We are getting some error in our webpage with the Dynamic avia and some tags. I will add the link to the csv down.
Do you know what is going on?
Thanks for your time
Hey keep12,
Thank you for the inquiry.
Looks like the site is trying to load a cached version of the post css files, which no longer exist. Please check the css path in the private field. Have you tried disabling the cache plugin temporarily? You can also disable the post css files with this filter in the functions.php file:
function avf_mod_post_css_create_file( $create ){
return false;
}
add_filter( 'avf_post_css_create_file', 'avf_mod_post_css_create_file', 10, 1 );
Best regards,
Ismael