Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1480524

    any ideas about this:
    I am using this in my header.php to only have my preloader on 2 pages:\

    
    	if(is_page(1147)) $preloader	= avia_get_option('preloader') == "preloader" ? 'av-preloader-active av-preloader-enabled' : 'av-preloader-disabled';
    if(is_page ( 945)) $preloader	= avia_get_option('preloader') == "preloader" ? 'av-preloader-active av-preloader-enabled' : 'av-preloader-disabled';

    I tried: is_page( array( but that returned a php error. I’m not sure that is the best way to target 2 pages?

    This is working fine, but there seems to be a flash (especially in chrome) when the other pages load – maybe because the preloader background color is set to black? Is there a way to have them load a bit softer? Sometimes I see it loading on other pages as well, depending on the browser.

    I have taken the preloader off page 945 so you can see how that page loads – it just started showing a black background also on the logo area: https://imgur.com/a/aKqXz33. It also seems to shift a bit, which is why I added the preloaded to that page. If those issues were fixed, I would remove it and only have it on the front page (1147).

    thanks
    Nancy

    #1480550

    Hey Munford,

    Thank you for the inquiry.

    You can try the following modification — simply replace the lines above with this code.

    if (is_page([1147, 945])) {
        $preloader = avia_get_option('preloader') === "preloader" 
            ? 'av-preloader-active av-preloader-enabled' 
            : 'av-preloader-disabled';
    }
    

    Let us know the result.

    Best regards,
    Ismael

    #1480572

    thanks

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