On hold
-
on the order status page I put the animated on-hold status so that it is blinking whenever it is called.
.order-status-on-hold {
background-color: # f70202;
color: white;
animation: text-effect-shortcodes-blink 1s linear infinite;
padding: 1px;
padding-inline-end: 3px;
padding-inline-start: 3px;
font-size: small;
border-bottom-left-radius: 0.28em;
border-bottom-right-radius: 0.28em;
border-top-left-radius: 0.28em;
border-top-right-radius: 0.28em;
}Now I want him to send an audio notification whenever he is called.
This ShortCode [player id = 5343] emits an infinite sound when posted on a post. pulling this code <audio class = “player” playsinline controls loop autoplay>
<source src = “www / wp-content / uploads / 2020/10 / 140432912.mp3” type = “audio / mp3”>
Your browser does not support the audio element.
</audio>How do I get the sound called with the .order-status-on-hold class?
so every time an order arrives, that audio is output.
- The topic ‘On hold’ is closed to new replies.