Viewing 1 replies (of 1 total)
  • In the settings, turn off Autoplay.

    Edit the soundy-background-music/templates/front-end.php file.

    Replace this code:

    $auto_play = $this->soundy->get_meta_data( 'war_soundy_autoplay' );
    $auto_play = ( $auto_play == 'yes' ) ? 'autoplay' : '';

    with this code:

    if($_SERVER['REQUEST_URI'] . substr($_SERVER['PHP_SELF'], 1) =="/index.php")
    	{
    		$auto_play = 'autoplay';
    	}
    	else
    	{
            $auto_play = $this->soundy->get_meta_data( 'war_soundy_autoplay' );
            $auto_play = ( $auto_play == 'yes' ) ? 'autoplay' : '';
    	}

Viewing 1 replies (of 1 total)
  • The topic ‘Home Page only’ is closed to new replies.