My site pages appear to lose formatting and it’s only fixed once I log in &/or update a particular page.
Has any one else seen this?
Hey tvbuzz,
Thank you for the inquiry.
It might be an issue with the cache or compression plugin. Please try to toggle or temporarily disable the Enfold > Performance > File Compression settings and deactivate the cache plugin. Let us know if the issue persists.
Best regards,
Ismael
Hi Ismael –
I toggled the File Performance and deactivated the cache plugin and still seeing issues.
Hi,
Thank you for the update.
We are not able to replicate the issue on our end. The post cssfiles load correctly when we checked the pages. If the issue persists, try adding the following filter to the functions.php file to prevent the use of the post css files.
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