• In case you’re interested, I needed to add a section of code to change up the plugin. A client wanted it to only play when they first entered the site, and not when they navigated back to the home page. Code follows.

    switch($data['autoplay']){
    case 'Yes':
    $autoplay = 1;
    break;
    case 'First Time':
    $url = get_bloginfo('url');
    $pos = strpos($_SERVER['HTTP_REFERER'],$url);
    if($pos===FALSE) {
    $autoplay = 1;
    }
    else {
    $autoplay = 0;
    }
    break;
    default:
    $autoplay = 0;
    break;
    }

The topic ‘Enhancement’ is closed to new replies.