I am having a problem with multiple instances of this player on a given page. I have a site with dozens of audio links on each page so I need to be able to support lots of instances of the audio player. However, when using this player only the first 6-8 mp3 audio files will be play-able. Any ideas?
https://www.ads-software.com/plugins/haiku-minimalist-audio-player/
]]>Hope this is helpful for folks. Couldn’t get the Google Analytics function built into Haiku working, but did a successful work around involving one additional tracking plugin
https://www.ads-software.com/support/topic/successfully-tracked-mp3-plays?replies=2
https://www.ads-software.com/plugins/haiku-minimalist-audio-player/
]]>I saw a thread for the same problem without any answer or solution, so I’m just posting this in order to bump that problem.
I have multiple players on one page and would like to stop other players when playing a new one. I know that WPaudio had a function for this when I tried it a few years back.
Do you have any idea how to solve this with Haiku?
https://www.ads-software.com/plugins/haiku-minimalist-audio-player/
]]>shortcode doesn’t seem to be getting parsed. just empty paragraph tags when I “view source”
https://www.ads-software.com/plugins/haiku-minimalist-audio-player/
]]>Hi, I’ve installed Haiku and I’m trying to do a streaming with Dropbox files. I can do it when the files are in the dropbox public folder but only one for each haiku player.
Does anyone know if we can play a complete folder?
https://www.ads-software.com/plugins/haiku-minimalist-audio-player/
]]>Hi there.
I just transferred a client’s site from GoDaddy to HostGator (but also updated to the latest version of WP just before) and am now getting this error under all of the players:
To play the media you will need to either update your browser to a recent version or update your Flash plugin
Any idea what’s going on here? I’ve updated all of my plugins, so that’s not it. Could it be a permissions issue?
https://www.ads-software.com/plugins/haiku-minimalist-audio-player/
]]>How can I customize the graphical player? Where exactly in the css are the styles for the player? And how can I add a custom player when not using shortcode but embedding within a page template?
https://www.ads-software.com/plugins/haiku-minimalist-audio-player/
]]>Just a hint: if you get the “you do not have sufficient permissions” error by clicking on the “Settings” link from the plugins page, just visit the main WordPress “Settings” menu and then “Haiku” from there. It’s just a bad link on the plugins page.
https://www.ads-software.com/plugins/haiku-minimalist-audio-player/
]]>After everything was working great for the last year, I just updated to the latest version of WP 3.6.1 and the player has simply disappeared. On the Haiku forum page someone voted that it is working fine with the WP update.. not for me though.
Tried updating the Haiku player again (Version 1.1.0), but they still aren’t appearing. Everything else on my site works fine and the player/MP3 coding is still intact in the admin area, the players just wont appear. So I haven’t a clue what the issue is.
Each player is a preview for a product… without the players/previews (obviously) customers wont purchase anything.
I’m desperate for some help on this issue. Anyone have any suggestions that may help resolve this?
Cheers
https://www.ads-software.com/plugins/haiku-minimalist-audio-player/
]]>I just updated to the new version of Haiku player. I actually liked the “Play” image button from the old version, is there any way to get that back? If not, is there a way to remove the scrubber and stop button from the graphical player? I am using the player for word pronunciations in a glossary, which are very short.
Here is an example:
https://projects.cals.ncsu.edu/blackshank/glossary-2/zoospore/
https://www.ads-software.com/plugins/haiku-minimalist-audio-player/
]]>I just updated to the new version of Haiku player. I actually liked the “Play” image button from the old version, is there any way to get that back? If not, is there a way to remove the scrubber and stop button from the graphical player? I am using the player for word pronunciations in a glossary, which are very short.
Here is an example:
https://projects.cals.ncsu.edu/blackshank/glossary-2/zoospore/
https://www.ads-software.com/plugins/haiku-minimalist-audio-player/
]]>Hi.
I have this page here:
https://exodusinteractiveforum.com/haiku-test/
With multiple haiku mp3’s
Here is what a test revealed and I really need a solution.
1. I clicked play in both IE and Chrome, and hit pause sometimes. I ran each podcast about 10 minutes.
2. I did the same on the iPad and Android phone; HOWEVER, we had the same problem with the files on iPad and the iphone. For example, on iPad, podcasts 4, 5 and 6 did not play. When the page loaded, they showed the file as 00:00 / 00:00. I hit refresh a number of times and was not able to get anything. Podcasts 1, 2, 3, and 7 played fine.
3. Same issue with the Android phone. Podcast 7 would not play. All the others played fine. Do you have any idea what is causing this? They all work on desktop browsers, but certain files don’t seem to load on the mobile devices (and there is a variance even among the mobile devices).
https://www.ads-software.com/plugins/haiku-minimalist-audio-player/
]]>Is it possible to simply force the player to display the full width of the post/page? I’ve tried inserting “width: 100%” into various places but have had no joy.
Thanks.
https://www.ads-software.com/plugins/haiku-minimalist-audio-player/
]]>Hi!
I really like the feature of the player to replace all links to mp3 files. I tried to additionally grab the (optional) title of the link to add it to the player, but i had no luck..
anyone good in regexing?
the code in line 49 + 50 in haiku-player.php:
$pattern = "/<a ([^=]+=['\"][^\"']+['\"] )*href=['\"](([^\"']+\.mp3))['\"]( [^=]+=['\"][^\"']+['\"])*>([^<]+)<\/a>/i";
$replacement = '[haiku url=$2 defaultpath=disabled]';
https://www.ads-software.com/plugins/haiku-minimalist-audio-player/
]]>Hi, i downloaded the plugin and wanted to have the text player in the main menu.
is this possible??
thanks in advance
https://www.ads-software.com/extend/plugins/haiku-minimalist-audio-player/
]]>Is there a limit on the number of mp3 files I can call in on any particular page? I have a page with 7 files. The first three work and then last 4 all show “Update Required you may need Flash”
https://www.ads-software.com/extend/plugins/haiku-minimalist-audio-player/
]]>So here’s the issue…
The goal is to reset the play index back to time 00:00 programatically. You are supposed to be able to do this by calling…
xxx.jplayer(‘play’,0) where that ‘0’ is the time offset.
xxx.jplayer(‘pause’,0) is supposed to do the same thing, and
xxx.jplayer(‘stop’) is supposed to reset to 00:00 by default.
I have tried making these changes in the haiku-player.js file in the graphical player section where haiku-player calls jPlayer. That section (in part) looks like this…
// play button
play.click(function(){
$(this).hide();
pause.fadeIn(100);
parent.jPlayer(‘play’);
return false;
});
// pause button
pause.click(function(){
$(this).hide();
play.fadeIn(100).attr(‘title’,’Resume’);
parent.jPlayer(‘pause’);
return false;
});
// stop button
stop.click(function(){
pause.hide();
play.fadeIn(100);
parent.jPlayer(‘stop’);
return false;
});
Changing the parent.jPlayer(‘play’); to parent.jPlayer(‘play’,0); has no effect. If the user played all the way through, Play does nothing and the play bar appears “wide” as it does when play has just finished. Changing the parent.jPlayer(‘pause’); to parent.jPlayer(‘pause’,0); has no effect. Play resumes right where the user paused. And changing parent.jPlayer(‘pause’); to parent.jPlayer(‘stop’); just for testing has no effect. Again play resumes right where the user paused.
So…either the settings are not working, or something is taking precedence over the code in hiku-player.js.
https://www.ads-software.com/extend/plugins/haiku-minimalist-audio-player/
]]>The Haiku audio player plugin installs ok but when I go to its settings, I get a “You do not have sufficient permissions to access this page.”
I’ve chked the wp-config file and its settings seem to be proper; I’ve chked permissions of the haiku folders on the server and they are all set at 755
ideas?
https://www.ads-software.com/extend/plugins/haiku-minimalist-audio-player/
]]>Hi – Is there a way to make the audio player auto-play? I thought I read somewhere that adding autoplay=”true” would work, but it’s not on my system.
https://www.ads-software.com/extend/plugins/haiku-minimalist-audio-player/
]]>I use Powerpress for podcasting, but also need a simple MP3 audio player for audio on ordinary blog posts.
Will the Haiku minimalist audio player work alongside Powerpress without conflicts?
https://www.ads-software.com/extend/plugins/haiku-minimalist-audio-player/
]]>Hello everyone and thanks for this super simple player !
if i have multiple player on the page, how could i do to stop other players when playing one ?
any advice ??
thnx ! ??
https://www.ads-software.com/extend/plugins/haiku-minimalist-audio-player/
]]>Hello! Love the player, very easy to work with!
I have a feature request. To help my CSS styling, I’d really like to have a css class that changes if it’s currently playing or not.
I’m thinking that the div.haiku-container or the ul.haiku-controls could get a class called “playing” when it’s playing, “pause” when paused, and nothing (or “stopped”) when stopped.
That would enable me to do more advanced styling for a client I’m working on right now.
Regards / Johan
https://www.ads-software.com/extend/plugins/haiku-minimalist-audio-player/
]]>I recently installed the updated version of Haiku Audio Player and am receiving a message saying I need to update my flash player to the current version. I am using Google Chrome, and it tells me that Flash player is updated automatically.
The box appears on page load, and stays put until the text player has fully loaded (i.e. there is a total time for mp3 clip showing). It seems to be tied to the haiku-no-solution class, and I can set it to display:none, but the page load is still impacted by the message.
You can see what is happening at this URL: https://www.kfumc.org/see-hear/listen-to-sermons/?sermon_id=154
I am using a custom theme with the latest version of WordPress. Thanks in advance for any help you can provide.
https://www.ads-software.com/extend/plugins/haiku-minimalist-audio-player/
]]>Hi:
I’m using version 0.4.5 of your player on my sidebar (https://www.picadilloblog.com). I tried your new version but I had to remove it because it wouldn’t work correctly on my installation.
I would like to center the player. I tried putting the short code between DIV tags (<div align=”center”> SHORTCODE HERE </div>) but that doesn’t work.
I think there’s a CSS ordering the player to remain flush left. Could you please shed some light on this problem?
https://www.ads-software.com/extend/plugins/haiku-minimalist-audio-player/
]]>The new version is not working on my site. Here’s a page: https://seriousgivers.org/2013/02/moneylife-features-scam-fighting-withcharitycheck101/
The play button should show up just above “About Chuck Jaffe . . .”
https://www.ads-software.com/extend/plugins/haiku-minimalist-audio-player/
]]>Haiku doesn’t shown in RSS. Instead
]]>I really can’t believe after the update I’ve to rewrite everything about this player few hours before close with a project of mine………..
And is not working the replacement!
https://www.ads-software.com/extend/plugins/haiku-minimalist-audio-player/
]]>Hi:
I just finished reinstalling my old version of HAIKU Player. The “upgrade” to version 1.0 just doesn’t work. Thank God I had a copy of the previous version. When I installed the new version I started getting messages that my browser weren’t up to date (which they are) and my players disappeared.
Now I’m left with the nagging message that I have a plugin that needs updating. But at least my players work again.
Please fix whatever it was that you broke on the next version.
(These are the sites where I have it installed: https://www.picadilloblog.com & https://www.hablandodetecnologia.com)
https://www.ads-software.com/extend/plugins/haiku-minimalist-audio-player/
]]>The update deleted my previous settings.
The graphics are not as clean as the old version.
the time shows overlapping the bottom of the play bar.
With multiple pieces on a page clicking one does not turn off another.
The old one worked so well! why have you done this?
This was the best. Now it is nearly the worst. Unless the things above can be fixed, I will have to change to a different player.
https://www.ads-software.com/extend/plugins/haiku-minimalist-audio-player/
]]>is there a way to make the text version display “play” again after the audio ends?
https://www.ads-software.com/extend/plugins/haiku-minimalist-audio-player/
]]>