Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1495350

    Hi Enfold Support Team,

    I’m experiencing a recurring issue with my website using the Enfold theme.

    Around once a week, the formatting across my site appears to drop out or reset. When this happens, I need to manually update every individual page and portfolio item to restore the correct layout.

    I have included screenshots to show how the pages appear when the wrong formatting issue occurs, as well as the correct format.

    Could you please help me identify what may be triggering this and recommend a solution?

    Thank you!

    #1495352

    Hey lara666,

    Thank you for the inquiry.

    It’s possible that the cache plugin is conflicting with the default compression options. Have you enabled the Enfold > Performance > File Compression settings? Please try cloning the site to a staging environment, make sure the configurations are identical and then temporarily disable the file compression settings. Let us know if the issue persists.

    Best regards,
    Ismael

    #1495506

    Hi Ismael,

    Thank you for your message.

    The compression is currently set to use the minified theme CSS files without merging.

    I am unsure of the correct process to clone the website to a staging environment while keeping all configurations exactly the same.

    Would you be able to review the issue directly if I provide the login details in the private section?

    As you will see from the website linked below, the formatting has already reverted to the strange layout again.

    #1495510

    Hi,

    Thank you for the login info.

    We tried logging in, but it’s asking for a 9-digit authentication code. The issue occurs because the post css file for that particular page is being deleted and returns a 404 error. You can try adding this code to the functions.php file to disable post css file generation for the home page.

    add_filter( 'avf_post_css_create_file', function( $create ) {
        if ( is_singular() && get_the_ID() === 248 ) {
            return false;
        }
    
        return $create;
    });

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.