Tagged: 

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

    I’ve got an interesting issue.

    I’ve been implementing caching and other methods to improve the load time of my site, and Enfold hasn’t had a problem with these and still works perfectly, and the page load time has been improved noticeably.

    However, there is an issue with caching pages that have a URL with ? in them (I’m using WP Super Cache). Unfortunately, a lot of the URLs that point to the site use Google tracking parameters that append ?utm_source=… after the page URL.

    There is a workaround, and that’s replacing the ? for a # so that ?utm_source= becomes #utm_source= (see: http://z9.io/2010/02/22/remove-unused-utmsource-urls/#comment-672813). That has solved my issue, with one problem – it’s broken the animated Icon Lists on these pages – they don’t load properly now.

    Is there a way round this, or alternatively is it possible to just load the Icon List icons into their final state without the animation?

    Thanks,

    Daniel

    #291769

    Hi!

    Add this to the Quick CSS:

    #top .avia-icon-list .iconlist_icon{
        opacity: 1;
        -moz-transform: none;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    

    Cheers!
    Josue

    #291877

    Hi Josue,

    I’ve added that – and it seems to be working. It’s working differently on different pages, but I’m guessing that me be some caching issue. At least the icons are now showing on the pages with the #utm_source= URLs.

    I’ll investigate further to see why there are differences between the pages.

    Thanks again,

    Daniel

    #291888

    Hey Daniel!

    Try changing the code to this to make sure no animation is triggered:

    #top .avia-icon-list .iconlist_icon{
        opacity: 1  !important;
        -moz-transform: none !important;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        -webkit-animation: none !important;
        -moz-animation: none !important;  
        animation: none !important; 
    }

    Cheers!
    Josue

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