This tutorial will guide you how to add a WordPress audio player created with Wonder Audio Player to the popular WPBakery Page Builder.
How to open an audio player in a WordPress lightbox popup
This tutorial will guide you how to open an audio player created with WonderPlugin Audio Player in a WordPress lightbox popup. We use the plugin WonderPlugin Carousel to create the carousel and the lightbox.
Continue reading
Playing audio on the first page visit of the website
Product:
WonderPlugin Audio Player
Question:
I wonder is there a way to play an audio snippet 30 seconds after someone lands on any page of my website, but I would only want it to play once...not each time they go to a new page. Is that possible and would it be simple to do?
How to load mp3 list from a JSON web service in WonderPlugin Audio Player
Product:
This tutorial will show you how to load an audio list from a JSON web service in the plugin WonderPlugin Audio Player.
Moving WordPress to a New Domain
Products:
WonderPlugin Slider, WonderPlugin Gallery, WonderPlugin Portfolio Grid Gallery, WonderPlugin Carousel and WonderPlugin Audio Player
Tutorial:
When you move your WordPress to a new domain name, you many find the image, video and audio links in the plugins are not updated, they still point to the old domain name. This tutorial will guide you how to update the links and fix the problem.
I upgraded to commercial version, but the free version watermark remains
Product:
All Wonder Plugins
Question:
I purchased the commercial version and have received my membership login password. I downloaded the commercial version and followed the upgrade instructions as posted on your website, however, the free version watermark remains.
Continue reading
Search and replace when moving WordPress site
Product:
All WonderPlugin Products
Question:
I am moving my WordPress development site to production. I did a search and replace in the WordPress database, but the images in the carousel slider still link to the old domain.
How to play mp3 files hosted on Google Drive in WordPress
This tutorial will guide you how to play mp3 files hosted on Google Drive in WordPress with Wonder Audio Player.
WordPress Live Streaming Audio Player
Product:
Question:
I came across your site because it says you have a WordPress Live Streaming Audio Player, but when I click on it, it takes me to just your Wonderplugin Audio Player. Are they the same thing? How would I set up the live feed? The video tutorial didn't show it.
Answer:
The plugin Wonder Audio Player is capable of playing live mp3 streaming URL.
You can view the tutorials on the page: WordPress Live Streaming Player
WordPress Audio Player API Event
Product:
Question:
I want to know how to write javascript to catch the event play and stop.
Answer:
You could use the following JavaScript code:
jQuery("#wonderpluginaudio-1").on("amazingaudioplayer.played", function(event, data) { console.log(event); console.log(data); }); jQuery("#wonderpluginaudio-1").on("amazingaudioplayer.ended", function(event, data) { console.log(event); console.log(data); }); jQuery("#wonderpluginaudio-1").on("amazingaudioplayer.paused", function(event, data) { console.log(event); console.log(data); }); jQuery("#wonderpluginaudio-1").on("amazingaudioplayer.switched", function(event, data) { console.log(event); console.log(data); });
Please change the number 1 in the above code to the ID of your player.