Okay
  Public Ticket #3413545
sticky player / radio stream
Closed

Comments

  • Fausto Caceres started the conversation

    Hello. I'm making a radio station website where I'd like to use the player for both local podcast files and a continuous shoutcast radio stream. The sticky functions great with the local files, with the progress bar refective of where you are in the file, but when the continuous radio stream is activated, the progress bar/waveform doesn't actually refer to anything as it is a continuous feed and its presence just makes it look very confusing to the listener. How can I disable the progress bar in the sticky player only for the radio stream instance while keeping it active when playing local podcast files?

  •  1,106
    Max replied

    Hi,

    you can use custom CSS to hide the progress bar or anything in the sticky player for a particular page.

    eg:

    .page-id-3261 #sPlayer {
        display: none!important;
    }
    


    Thanks,


    Max from the Sonaar.io Crew

  • Fausto Caceres replied

    I see. Thank you. I will try that.